2015-03-04 06:15:45 +00:00
|
|
|
// Type definitions for gulp-minify-css
|
|
|
|
|
// Project: https://github.com/jonathanepollack/gulp-minify-css
|
|
|
|
|
// Definitions by: Keita Kagurazaka <https://github.com/k-kagurazaka>
|
2016-03-16 15:31:58 +00:00
|
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
2015-03-04 06:15:45 +00:00
|
|
|
|
2016-05-10 01:06:27 +00:00
|
|
|
/// <reference types="node" />
|
2015-03-04 06:15:45 +00:00
|
|
|
|
2016-04-22 21:12:45 +00:00
|
|
|
import * as CleanCSS from 'clean-css';
|
2015-03-04 06:15:45 +00:00
|
|
|
|
2016-04-22 21:12:45 +00:00
|
|
|
declare function minifyCSS(options?: CleanCSS.Options): NodeJS.ReadWriteStream;
|
2015-12-30 11:20:24 +00:00
|
|
|
|
2016-04-22 21:12:45 +00:00
|
|
|
declare namespace minifyCSS { }
|
|
|
|
|
|
|
|
|
|
export = minifyCSS;
|