photoeditorsdk
Version:
The most comprehensive photo editor SDK for HTML5
8 lines (7 loc) • 325 B
TypeScript
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;
}