mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 05:09:30 +08:00
17 lines
539 B
Text
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;
|