UNPKG

243 BTypeScriptView Raw
1import * as cleanCss from 'clean-css';
2export declare function getCleanCssInstance(options: cleanCss.Options): cleanCss;
3export interface CleanCssConfig {
4 sourceFileName: string;
5 destFileName: string;
6 options?: cleanCss.Options;
7}