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:
commit
93ba8eec4f
2 changed files with 5 additions and 4 deletions
1
src/ui/lib/types/text/textAttributes.d.ts
vendored
1
src/ui/lib/types/text/textAttributes.d.ts
vendored
|
@ -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;
|
||||||
|
|
8
src/ui/lib/types/text/textContent.d.ts
vendored
8
src/ui/lib/types/text/textContent.d.ts
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue