# Installation
> `npm install --save @types/gulp-clean-css`

# Summary
This package contains type definitions for gulp-clean-css (https://github.com/scniro/gulp-clean-css#readme).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-clean-css.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-clean-css/index.d.ts)
````ts
/// <reference types="node" />

import { Options, Output } from "clean-css";

declare namespace GulpCleanCss {
    interface Details {
        stats: Output["stats"];
        errors: Output["errors"];
        warnings: Output["warnings"];
        path: string;
        name: string;
    }
}

declare function GulpCleanCss(
    options?: Options,
    callback?: (details: GulpCleanCss.Details) => void,
): NodeJS.ReadWriteStream;

export = GulpCleanCss;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
 * Dependencies: [@types/clean-css](https://npmjs.com/package/@types/clean-css), [@types/node](https://npmjs.com/package/@types/node)

# Credits
These definitions were written by [tqma](https://github.com/tqma113).
