15 lines
316 B
TypeScript
15 lines
316 B
TypeScript
/**
|
|
* Font category
|
|
*/
|
|
export type FontCategory = 'sans-serif' | 'serif' | 'display' | 'handwriting' | 'monospace';
|
|
|
|
/**
|
|
* Font provider
|
|
*/
|
|
export type FontProvider = 'google' | 'fontshare';
|
|
|
|
/**
|
|
* Font subset
|
|
*/
|
|
export type FontSubset = 'latin' | 'latin-ext' | 'cyrillic' | 'greek' | 'arabic' | 'devanagari';
|