mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 00:39:30 +08:00
16 lines
420 B
Text
16 lines
420 B
Text
export = cssnanoPlugin;
|
|
/**
|
|
* @type {import('postcss').PluginCreator<Options>}
|
|
* @param {Options=} options
|
|
* @return {import('postcss').Plugin}
|
|
*/
|
|
declare function cssnanoPlugin(options?: Options | undefined): import('postcss').Plugin;
|
|
declare namespace cssnanoPlugin {
|
|
export { postcss, Options };
|
|
}
|
|
type Options = {
|
|
preset?: any;
|
|
plugins?: any[];
|
|
configFile?: string;
|
|
};
|
|
declare var postcss: true;
|