Urara-Blog/node_modules/.pnpm-store/v3/files/13/71a88b0fd6117c1eeeabf6ad0c2cc1ffd2dad9f4cf73d1812dcea6063766e5f33a8296990060483091e3116687c3ba72bd4e251bc5b997dc3490d073f1a2fa
2022-08-14 01:14:53 +08:00

17 lines
539 B
Text

export = pluginCreator;
/** @typedef {{removeAfterKeyword?: boolean, removeDuplicates?: boolean, removeQuotes?: 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 = {
removeAfterKeyword?: boolean;
removeDuplicates?: boolean;
removeQuotes?: boolean;
};
declare var postcss: true;