download font integration

This commit is contained in:
Julien Calixte
2024-04-06 14:11:01 +02:00
parent 809b376430
commit 8090f838be
3 changed files with 5 additions and 24 deletions

View File

@@ -2,14 +2,7 @@ import { DataType } from '@/data/DataType.enum'
import { Model } from '@/data/models/Model'
export interface UserSettings extends Model<DataType.UserSettings> {
fontFamily?:
| 'Courgette'
| 'IBM Plex Serif'
| 'Kiwi Maru'
| 'Maven Pro'
| 'Noto Sans KR'
| 'Tajawal'
| 'Domine'
fontFamily?: string
mode?: 'light' | 'dark'
backlink?: boolean
}