epiphany/node_modules/@csstools/postcss-progressive-custom-properties/dist/match.d.ts
2023-12-09 22:48:07 -08:00

11 lines
253 B
TypeScript

type MatcherNode = {
type: string;
value?: string;
nodes?: Array<MatcherNode>;
dimension?: {
unit?: string;
};
isVariable?: boolean;
};
export declare function matches(a: MatcherNode, b: MatcherNode): boolean;
export {};