0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 05:33:02 -05:00

Merge branch 'hotfix/upgrade-penpot-library' of github.com:Runroom/penpot-exporter-figma-plugin into hotfix/upgrade-penpot-library

This commit is contained in:
Jordi Sala Morales 2024-04-10 11:08:58 +00:00
commit 93ba8eec4f
No known key found for this signature in database
GPG key ID: C5127140107F55FD
2 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,7 @@
import { TextContent } from './textContent';
export type TextAttributes = {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
id?: any;
type: symbol;
content?: TextContent;

View file

@ -21,8 +21,8 @@ type Paragraph = {
direction?: string;
textDecoration?: string;
textTransform?: string;
typographyRefId?: string | null;
typographyRefFile?: string | null;
typographyRefId?: string;
typographyRefFile?: string;
children: TextNode[];
};
@ -37,8 +37,8 @@ type TextNode = {
direction?: string;
textDecoration?: string;
textTransform?: string;
typographyRefId?: string | null;
typographyRefFile?: string | null;
typographyRefId?: string;
typographyRefFile?: string;
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any