Urara-Blog/node_modules/.pnpm-store/v3/files/48/72537752c082ffc6280e62d051f211055170adcce02cd28988f5dbc2caa5622eae9ae39632bfe229b7c9b0efdb26c4cf8ffc9c0c30ffd016670b585af43ea1
2022-08-14 01:14:53 +08:00

11 lines
428 B
Text

export = LeadingStar;
declare class LeadingStar extends BasePlugin {
/** @param {import('postcss').Result=} result */
constructor(result?: import('postcss').Result | undefined);
/**
* @param {import('postcss').Declaration | import('postcss').AtRule} node
* @return {void}
*/
detect(node: import('postcss').Declaration | import('postcss').AtRule): void;
}
import BasePlugin = require("../plugin");