font-utils.d.ts 389 B

12345678
  1. export declare type FontManifest = Array<{
  2. url: string;
  3. content: string;
  4. }>;
  5. export declare type FontConfig = boolean;
  6. export declare function getFontDefinitionFromNetwork(url: string): Promise<string>;
  7. export declare function getFontDefinitionFromManifest(url: string, manifest: FontManifest): string;
  8. export declare function getFontOverrideCss(url: string, css: string): string;