gulp-fonter-fix
Version:
Font subsetting and converting plugin for gulp (MAC FIX)
22 lines (21 loc) • 537 B
TypeScript
export declare type InputConfiguration = {
compound2simple?: Boolean;
combinePath?: Boolean;
hinting?: Boolean;
deflate?: Boolean | null | Function;
inflate?: Boolean | Function;
formats?: String | String[];
subset?: null | String | Number[];
};
export declare enum FontType {
'ttf' = 0,
'woff' = 1,
'eot' = 2,
'otf' = 3,
'svg' = 4
}
export declare type FinalConfiguration = InputConfiguration & {
type: FontType;
subset: Number[];
formats: FontType[];
};