mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
448 B
TypeScript
15 lines
448 B
TypeScript
// Type definitions for gulp-minify-css
|
|
// Project: https://github.com/jonathanepollack/gulp-minify-css
|
|
// Definitions by: Keita Kagurazaka <https://github.com/k-kagurazaka>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
import * as CleanCSS from 'clean-css';
|
|
|
|
declare function minifyCSS(options?: CleanCSS.Options): NodeJS.ReadWriteStream;
|
|
|
|
declare namespace minifyCSS { }
|
|
|
|
export = minifyCSS;
|