npm install --save @types/imagemin
This package contains type definitions for imagemin (https://github.com/imagemin/imagemin#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/imagemin.
/// <reference types="node" />
/**
* @async
*/
declare function imagemin(input: readonly string[], options?: Options): Promise<Result[]>;
declare namespace imagemin {
/**
* @async
*/
function buffer(input: Buffer, options?: BufferOptions): Promise<Buffer>;
}
export type Plugin = (input: Uint8Array) => Promise<Uint8Array>;
export interface Options {
destination?: string | undefined;
plugins: readonly Plugin[];
glob?: boolean | undefined;
}
export interface Result {
data: Buffer;
sourcePath: string;
destinationPath: string;
}
export interface BufferOptions {
plugins: readonly Plugin[];
}
export default imagemin;
- Last updated: Mon, 03 Jun 2024 21:07:33 GMT
- Dependencies: @types/node
These definitions were written by Romain Faust, and Jeff Chan.