feature/sidebar #8

Merged
ilia merged 50 commits from feature/sidebar into main 2026-01-03 10:56:23 +00:00
2 changed files with 15 additions and 0 deletions
Showing only changes of commit 3971d364bd - Show all commits

View File

@@ -0,0 +1 @@
export type { FontCategory, FontProvider, FontSubset } from './model/font';

View File

@@ -0,0 +1,14 @@
/**
* 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';