font_loader.d.ts 692 B

12345678910111213141516171819
  1. export class FontFaceObject {
  2. constructor(translatedData: any, { isEvalSupported, disableFontFace, ignoreErrors, onUnsupportedFeature, fontRegistry, }: {
  3. isEvalSupported?: boolean | undefined;
  4. disableFontFace?: boolean | undefined;
  5. ignoreErrors?: boolean | undefined;
  6. onUnsupportedFeature: any;
  7. fontRegistry?: any;
  8. });
  9. compiledGlyphs: any;
  10. isEvalSupported: boolean;
  11. disableFontFace: boolean;
  12. ignoreErrors: boolean;
  13. _onUnsupportedFeature: any;
  14. fontRegistry: any;
  15. createNativeFontFace(): any;
  16. createFontFaceRule(): string | null;
  17. getPathGenerator(objs: any, character: any): any;
  18. }
  19. export let FontLoader: any;