mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
510 B
TypeScript
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;
|