Urara-Blog/node_modules/.pnpm-store/v3/files/a8/8bf0a45a539d5f11a0a3121095358159a54ac7e2572ebc0cde1dd551ca52a76173271336420d49a6b7a2fb90954d9c76905bf01a77f145b48116dc6a1bd8f5
2022-08-14 01:14:53 +08:00

17 lines
402 B
Text

export = pluginCreator;
/**
* @typedef {{add?: boolean}} Options
*/
/**
* @type {import('postcss').PluginCreator<Options>}
* @param {Options} opts
* @return {import('postcss').Plugin}
*/
declare function pluginCreator(opts?: Options): import('postcss').Plugin;
declare namespace pluginCreator {
export { postcss, Options };
}
type Options = {
add?: boolean;
};
declare var postcss: true;