Urara-Blog/node_modules/.pnpm-store/v3/files/ad/fb76acb99c5e1c02c066b0bc29388a72bbba4d9d43c7469b25a00d8e064845c99f599c16753277cdc7aac510c4ce9e3299c9eac7386fb6b3fafa82ad59b797
2022-08-14 01:14:53 +08:00

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;