Urara-Blog/node_modules/.pnpm-store/v3/files/da/b8ac9c07e2dcb96225223428045721dd0dda862f28c43ef2fb7fd9c61f0be71a355468cfcda83eed7321bf399bf3725369488af51d393853145f6527998986
2022-08-14 01:14:53 +08:00

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");