0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -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'; import { TextContent } from './textContent';
export type TextAttributes = { export type TextAttributes = {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
id?: any; id?: any;
type: symbol; type: symbol;
content?: TextContent; content?: TextContent;

View file

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