mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-09 13:29:13 +08:00
14 lines
439 B
Text
14 lines
439 B
Text
export = pluginCreator;
|
|
/** @typedef {normalize.Options} 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 = normalize.Options;
|
|
declare var postcss: true;
|
|
import normalize = require("normalize-url");
|