6 lines
320 B
TypeScript
6 lines
320 B
TypeScript
|
import type { AtRule, Rule } from 'postcss';
|
||
|
import { walkFunc } from './walk-func.js';
|
||
|
import { options } from './options.js';
|
||
|
export default function transformNestRuleWithinRule(node: AtRule, parent: Rule, walk: walkFunc, opts: options): void;
|
||
|
export declare function isValidNestRuleWithinRule(node: AtRule): boolean;
|