DefinitelyTyped/types/imagemin-jpegtran/index.d.ts
2018-08-25 17:45:42 +02:00

18 lines
519 B
TypeScript

// Type definitions for imagemin-jpegtran 5.0
// Project: https://github.com/imagemin/imagemin-jpegtran#readme
// Definitions by: Romain Faust <https://github.com/romain-faust>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import { Plugin } from 'imagemin';
declare function imageminJpegtran(options?: imageminJpegtran.Options): Plugin;
declare namespace imageminJpegtran {
interface Options {
arithmetic?: boolean;
progressive?: boolean;
}
}
export = imageminJpegtran;