walk-func.d.ts 144 B

1234
  1. import type { Container } from 'postcss';
  2. export declare type walkFunc = (node: Container, opts: {
  3. noIsPseudoSelector: boolean;
  4. }) => void;