@cspell/eslint-plugin
Version:
12 lines • 362 B
TypeScript
import type { ASTNode } from './ASTNode.js';
export type Key = string | number | symbol | null | undefined;
export interface ASTPathElement {
node: ASTNode;
parent: ASTNode | undefined;
key: Key;
index?: number | undefined;
}
export interface ASTPath extends ASTPathElement {
prev: ASTPath | undefined;
}
//# sourceMappingURL=ASTPath.d.ts.map