mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-18 21:42:36 -05:00
15 lines
206 B
TypeScript
15 lines
206 B
TypeScript
|
export type LocalFont = {
|
||
|
id: string;
|
||
|
name: string;
|
||
|
family: string;
|
||
|
variants?: Variant[];
|
||
|
};
|
||
|
|
||
|
type Variant = {
|
||
|
id: string;
|
||
|
name: string;
|
||
|
weight: string;
|
||
|
style: string;
|
||
|
suffix?: string;
|
||
|
};
|