UNPKG

325 BTypeScriptView Raw
1import { Token } from '@phosphor/coreutils';
2import { Menu } from '@phosphor/widgets';
3export declare const IFontManager: Token<IFontManager>;
4export interface IFontManager {
5 registerCodeFont(fontFamily: string, variants?: string[]): void;
6 styles: HTMLStyleElement[];
7 menus: Menu[];
8 codeFontFamily: string;
9}