UNPKG

592 BTypeScriptView Raw
1// Type definitions for imagemin-svgo 8.0
2// Project: https://github.com/imagemin/imagemin-svgo#readme
3// Definitions by: Romain Faust <https://github.com/romain-faust>
4// Piotr Błażejewicz <https://github.com/peterblazejewicz>
5// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
6
7import { Plugin } from 'imagemin';
8import { Options as SvgoOptions } from 'svgo';
9
10/**
11 * SVGO imagemin plugin
12 */
13declare function imageminSvgo(options?: imageminSvgo.Options): Plugin;
14
15declare namespace imageminSvgo {
16 type Options = SvgoOptions;
17}
18
19export = imageminSvgo;