1 | export = pluginCreator;
|
2 | /** @typedef {{encode?: boolean} & import('svgo').Config} Options */
|
3 | /**
|
4 | * @type {import('postcss').PluginCreator<Options>}
|
5 | * @param {Options} opts
|
6 | * @return {import('postcss').Plugin}
|
7 | */
|
8 | declare function pluginCreator(opts?: Options): import('postcss').Plugin;
|
9 | declare namespace pluginCreator {
|
10 | export { postcss, Options };
|
11 | }
|
12 | type Options = {
|
13 | encode?: boolean;
|
14 | } & import('svgo').Config;
|
15 | declare var postcss: true;
|
16 | //# sourceMappingURL=index.d.ts.map |
\ | No newline at end of file |