nest-rule-within-rule.d.ts 320 B

12345
  1. import type { AtRule, Rule } from 'postcss';
  2. import { walkFunc } from './walk-func.js';
  3. import { options } from './options.js';
  4. export default function transformNestRuleWithinRule(node: AtRule, parent: Rule, walk: walkFunc, opts: options): void;
  5. export declare function isValidNestRuleWithinRule(node: AtRule): boolean;