10.0.5 • Published 6 months ago

@types/imagemin-svgo v10.0.5

Weekly downloads
122,973
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/imagemin-svgo

Summary

This package contains type definitions for imagemin-svgo (https://github.com/imagemin/imagemin-svgo#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/imagemin-svgo.

index.d.ts

// Type definitions for imagemin-svgo 10.0
// Project: https://github.com/imagemin/imagemin-svgo#readme
// Definitions by: Romain Faust <https://github.com/romain-faust>
//                 Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

import { Plugin } from 'imagemin';
import { OptimizeOptions as SvgoOptions } from 'svgo';

/**
 * SVGO imagemin plugin
 */
declare function imageminSvgo(options?: Options): Plugin;

export type Options = SvgoOptions & {
    /**
     * Pass over SVGs multiple times to ensure all optimizations are applied
     * @default true
     */
    multipass?: boolean | undefined;
};

export default imageminSvgo;

Additional Details

Credits

These definitions were written by Romain Faust, and Piotr Błażejewicz.