mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-08 16:10:07 -05:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
|
export type GoogleFont = {
|
||
|
family: string;
|
||
|
variants?: string[];
|
||
|
subsets?: string[];
|
||
|
version: string;
|
||
|
lastModified: string;
|
||
|
files?: { [key: string]: string | undefined };
|
||
|
category: string;
|
||
|
kind: string;
|
||
|
menu: string;
|
||
|
};
|