7 lines
210 B
TypeScript
7 lines
210 B
TypeScript
/**
|
|
* Resolves a font url to a base64 string
|
|
* @param url - The url to load the font from
|
|
* @returns - The font as a base64 string
|
|
*/
|
|
export declare function loadFontAsBase64(url: string): Promise<string>;
|