DefinitelyTyped/types/imagemin-svgo/index.d.ts
2018-08-25 17:57:21 +02:00

17 lines
510 B
TypeScript

// Type definitions for imagemin-svgo 7.0
// Project: https://github.com/imagemin/imagemin-svgo#readme
// Definitions by: Romain Faust <https://github.com/romain-faust>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
import { Plugin } from 'imagemin';
import { Options as SvgoOptions } from 'svgo';
declare function imageminSvgo(options?: imageminSvgo.Options): Plugin;
declare namespace imageminSvgo {
type Options = SvgoOptions;
}
export = imageminSvgo;