missing type

This commit is contained in:
Miodec 2022-02-12 19:16:00 +01:00
parent 912ec63644
commit 115eca71ca

View file

@ -189,7 +189,7 @@ export async function getQuotes(language: string): Promise<QuoteCollection> {
}
}
type Font = { name: string };
type Font = { name: string; display?: string };
let fontsList: Font[] = [];
export async function getFontsList(): Promise<Font[]> {