Files
memecoin-botV2/.pnpm-store/v10/files/dd/37c5d9d18c5d0e45853868c36ad79161f5c8d49bfbdd6e5923c127161deef63fb054373fda18ceea85acc057bf2528bed5dd5165af411b857fa3cf41fb1fc4

16 lines
635 B
Plaintext

import type { TSESTree } from '@typescript-eslint/utils';
export declare const enum NodeComparisonResult {
/** the two nodes are comparably the same */
Equal = "Equal",
/** the left node is a subset of the right node */
Subset = "Subset",
/** the left node is not the same or is a superset of the right node */
Invalid = "Invalid"
}
type CompareNodesArgument = TSESTree.Node | null | undefined;
/**
* Compares two nodes' ASTs to determine if the A is equal to or a subset of B
*/
export declare function compareNodes(nodeA: CompareNodesArgument, nodeB: CompareNodesArgument): NodeComparisonResult;
export {};