11 lines
253 B
TypeScript
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 {};
|