mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Update definition to imagemin v7 * Update index.d.ts * update to fix test and lint * use buffer options * for not breaking other package test * fix related test so that destination is no longer optional * Revert "fix related test so that destination is no longer optional" This reverts commit 5ec10f750a3ed1f50a46d7cf67084586ee2def5a.
7 lines
335 B
TypeScript
7 lines
335 B
TypeScript
import imagemin = require('imagemin');
|
|
|
|
imagemin(['*.png'], { destination: 'dist', plugins: [] }).then((results: imagemin.Result[]) => { /* ... */ });
|
|
|
|
imagemin.buffer(Buffer.from([/* ... */])).then((result: Buffer) => { /* ... */ });
|
|
imagemin.buffer(Buffer.from([/* ... */]), { plugins: [] }).then((result: Buffer) => { /* ... */ });
|