atrule-within-rule.d.ts 302 B

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