Urara-Blog/node_modules/.pnpm-store/v3/files/b6/26bc188f0373372693d1e39318451ee869179cf45c57de0b63efdfff4da71e9dd7e3a3705a9bc07ca2d3416faa1bf26fe44fac61f55c6069ad7bfa82280a63
2022-08-14 01:14:53 +08:00

21 lines
629 B
Text

export = pluginCreator;
/** @typedef {object} Options
* @property {boolean=} removeAll
* @property {boolean=} removeAllButFirst
* @property {(s: string) => boolean=} remove
*/
/**
* @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 = {
removeAll?: boolean | undefined;
removeAllButFirst?: boolean | undefined;
remove?: ((s: string) => boolean) | undefined;
};
declare var postcss: true;