1 | # Installation
|
2 | > `npm install --save @types/gulp-minify-css`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for gulp-minify-css (https://github.com/jonathanepollack/gulp-minify-css).
|
6 |
|
7 | # Details
|
8 | Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-minify-css.
|
9 | ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-minify-css/index.d.ts)
|
10 | ````ts
|
11 | // Type definitions for gulp-minify-css
|
12 | // Project: https://github.com/jonathanepollack/gulp-minify-css
|
13 | // Definitions by: Keita Kagurazaka <https://github.com/k-kagurazaka>
|
14 | // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
15 |
|
16 | /// <reference types="node" />
|
17 |
|
18 | import * as CleanCSS from 'clean-css';
|
19 |
|
20 | declare function minifyCSS(options?: CleanCSS.Options): NodeJS.ReadWriteStream;
|
21 |
|
22 | declare namespace minifyCSS { }
|
23 |
|
24 | export = minifyCSS;
|
25 |
|
26 | ````
|
27 |
|
28 | ### Additional Details
|
29 | * Last updated: Wed, 10 May 2023 21:03:32 GMT
|
30 | * Dependencies: [@types/clean-css](https://npmjs.com/package/@types/clean-css), [@types/node](https://npmjs.com/package/@types/node)
|
31 | * Global values: none
|
32 |
|
33 | # Credits
|
34 | These definitions were written by [Keita Kagurazaka](https://github.com/k-kagurazaka).
|
35 |
|
\ | No newline at end of file |