gulp-ttf2eot
Version:
Create an EOT font from a TTF one
12 lines (11 loc) • 432 B
TypeScript
import { Transform } from 'node:stream';
export type GulpTTF2EOTOptions = {
ignoreExt?: boolean;
clone?: boolean;
};
declare function ttf2eotTransform(): (err: Error | null, buf: Buffer, cb: (err: Error | null, buf?: Buffer) => void) => void;
declare function ttf2eotGulp(options?: GulpTTF2EOTOptions): Transform;
declare namespace ttf2eotGulp {
var fileTransform: typeof ttf2eotTransform;
}
export default ttf2eotGulp;