feature: create Font entity with types for filtering

This commit is contained in:
Ilia Mashkov
2026-01-01 13:10:36 +03:00
parent aa951260a0
commit 3971d364bd
2 changed files with 15 additions and 0 deletions

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';