You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
302 B

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