Joe Milazzo d04b8a09a1
Epub Font Manager (#4037)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2025-09-21 09:35:28 -07:00

18 lines
243 B
TypeScript

/**
* Where does the font come from
*/
export enum FontProvider {
System = 1,
User = 2,
}
/**
* Font used in the book reader
*/
export interface EpubFont {
id: number;
name: string;
provider: FontProvider;
fileName: string;
}