DefinitelyTyped/types/imagemin/imagemin-tests.ts
Jeff Chan 3deeea18a5 type definitions for imagemin 7.0 (#38199)
* 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.
2019-09-08 17:12:51 -07:00

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) => { /* ... */ });