// Type definitions for gulp-minify-css // Project: https://github.com/jonathanepollack/gulp-minify-css // Definitions by: Keita Kagurazaka // Definitions: https://github.com/borisyankov/DefinitelyTyped /// declare module "gulp-minify-css" { interface IOptions { cache?: boolean; advanced?: boolean; aggressiveMerging?: boolean; benchmark?: boolean; compatibility?: string; debug?: boolean; inliner?: Object; keepBreaks?: boolean; keepSpecialComments?: string | number; processImport?: boolean; rebase?: boolean; relativeTo?: string; root?: string; roundingPrecision?: number; shorthandCompacting?: boolean; } function minifyCSS(options?: IOptions): NodeJS.ReadWriteStream; namespace minifyCSS {} export = minifyCSS; }