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
16 lines (15 loc) • 391 B
TypeScript
/// <reference types="node" />
import { GlyphData } from "./GlyphData";
import { OptionsBase } from "./OptionsBase";
export declare type Result = {
config?: OptionsBase;
eot?: Buffer;
glyphsData?: Array<GlyphData>;
hash?: string;
svg?: string | Buffer;
template?: string;
ttf?: Buffer;
usedBuildInTemplate?: boolean;
woff?: Buffer;
woff2?: Buffer;
};