Urara-Blog/node_modules/.pnpm-store/v3/files/64/95b44f257dff5d4a1000d9950823948066070b7f6d3de84c9bd2faf683d282cf05427e62a29f8c78e56c01852b3f8a7dc074b59b2b4b3c9e68a3f43aa77f57
2022-08-14 01:14:53 +08:00

16 lines
472 B
Text

export = pluginCreator;
/** @typedef {{lint?: boolean}} 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 { detect, postcss, Options };
}
type Options = {
lint?: boolean;
};
declare function detect(node: import('postcss').Node): boolean;
declare var postcss: true;