mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 20:29:29 +08:00
10 lines
334 B
Text
10 lines
334 B
Text
export = pluginCreator;
|
|
/**
|
|
* @type {import('postcss').PluginCreator<Record<string, boolean>>}
|
|
* @param {Record<string, boolean>} config
|
|
* @return {import('postcss').Plugin}
|
|
*/
|
|
declare function pluginCreator(config?: Record<string, boolean>): import('postcss').Plugin;
|
|
declare namespace pluginCreator {
|
|
const postcss: true;
|
|
}
|