UNPKG

photoeditorsdk

Version:

The most comprehensive photo editor SDK for HTML5

8 lines (7 loc) 325 B
import { FontAsset } from '../../tools/text'; export interface FontManager { isFontLoaded(identifier: string): boolean; loadFontWithIdentifier(identifier: string, inject?: boolean): Promise<void>; loadFontsWithIdentifiers(identifiers: string[]): Promise<void>; getFontWithId(identifier: string): FontAsset; }