mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-09 14:45:04 -05:00
18 lines
243 B
TypeScript
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;
|
|
}
|