mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 09:18:26 -04:00
5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
|
|
import type { Container } from 'postcss';
|
||
|
|
export declare type walkFunc = (node: Container, opts: {
|
||
|
|
noIsPseudoSelector: boolean;
|
||
|
|
}) => void;
|