UNPKG

webfont

Version:

Generator of fonts from svg icons, svg icons to svg font, svg font to ttf, ttf to eot, ttf to woff, ttf to woff2

10 lines (9 loc) 290 B
export declare type Format = "eot" | "woff" | "woff2" | "svg" | "ttf"; export declare type Formats = Array<Format>; declare type FormatOption = { copyright: null; ts: null; version: null; }; export declare type FormatsOptions = Partial<Record<Format, FormatOption>>; export {};