@types/imagemin
TypeScript icon, indicating that this package has built-in type declarations

9.0.0 • Public • Published

Installation

npm install --save @types/imagemin

Summary

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

Details

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;

Additional Details

  • Last updated: Mon, 03 Jun 2024 21:07:33 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Romain Faust, and Jeff Chan.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
7.0.199,323ts3.6
9.0.095,905ts5.7
9.0.095,905ts5.6
9.0.095,905ts5.5
9.0.095,905ts5.4
9.0.095,905ts5.3
9.0.095,905ts5.2
9.0.095,905ts5.1
9.0.095,905ts5.0
9.0.095,905ts4.9
9.0.095,905ts4.8
9.0.095,905ts4.7
9.0.095,905latest
9.0.095,905ts5.8
8.0.053,486ts4.1
8.0.053,486ts4.0
8.0.053,486ts3.9
8.0.053,486ts3.8
8.0.053,486ts3.7
8.0.534,400ts4.6
8.0.534,400ts4.5
8.0.126,760ts4.4
8.0.126,760ts4.3
8.0.126,760ts4.2
7.0.016,964ts3.5
7.0.016,964ts3.4
7.0.016,964ts3.3
7.0.016,964ts3.2
7.0.016,964ts3.1
7.0.016,964ts3.0
7.0.016,964ts2.9
7.0.016,964ts2.8
7.0.016,964ts2.7
7.0.016,964ts2.6
7.0.016,964ts2.5
7.0.016,964ts2.4
7.0.016,964ts2.3
7.0.016,964ts2.2
7.0.016,964ts2.1
7.0.016,964ts2.0

Version History

VersionDownloads (Last 7 Days)Published
9.0.095,905
8.0.534,400
8.0.42,950
8.0.35,026
8.0.21,349
8.0.126,760
8.0.053,486
7.0.199,323
7.0.016,964
6.0.01,324

Package Sidebar

Install

npm i @types/imagemin

Weekly Downloads

337,487

Version

9.0.0

License

MIT

Unpacked Size

4.19 kB

Total Files

5

Last publish

Collaborators

  • types