Urara-Blog/node_modules/.pnpm-store/v3/files/1b/e16a362f3bb61c6e3212da0f10b65a5d86fca7312b52e44f34acbfc4970833ed0769f176389f0e23ea49dbd7f9c69deb4a91515fa4d61e166310c0631be8eb
2022-08-14 01:14:53 +08:00

17 lines
550 B
Text

export = pluginCreator;
/** @typedef {{encode?: boolean, plugins?: object[]} & import('svgo').OptimizeOptions} 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 = {
encode?: boolean;
plugins?: object[];
} & import('svgo').OptimizeOptions;
declare var postcss: true;
import { encode } from "./lib/url";