# Installation
> `npm install --save @types/cssnano`

# Summary
This package contains type definitions for cssnano (https://github.com/cssnano/cssnano).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cssnano.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cssnano/index.d.ts)
````ts
// Type definitions for cssnano 4.0
// Project: https://github.com/cssnano/cssnano
// Definitions by: Armando Meziat <https://github.com/odnamrataizem>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2

import { Plugin } from 'postcss';

declare namespace cssnano {
    interface CssNanoOptions {
        configFile?: string | undefined;
        preset?: [string, object] | string | undefined;
    }

    type CssNano = Plugin<CssNanoOptions>;
}

declare const cssnano: cssnano.CssNano;
export = cssnano;

````

### Additional Details
 * Last updated: Tue, 06 Jul 2021 20:32:34 GMT
 * Dependencies: [@types/postcss](https://npmjs.com/package/@types/postcss)
 * Global values: none

# Credits
These definitions were written by [Armando Meziat](https://github.com/odnamrataizem).
