UNPKG

gulp-font2style

Version:

Encode font files as stylesheet using Gulp.

9 lines (8 loc) 327 B
export declare type FontWeight = 'normal' | 'bold' | 'bolder' | 'lighter' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900; export declare type FontStyle = 'normal' | 'italic' | 'oblique'; export interface Options { basename?: string; fontFamily?: string; fontWeight?: FontWeight; fontStyle?: FontStyle; }