//#region src/types/ast.d.ts /** * ESLint AST Node type alias * * ESLint's AST node types are complex and not fully typed in the public API. * Using `any` is the standard practice for ESLint rule development when working * with AST nodes that need dynamic property access. */ type ASTNode = any; //#endregion export { ASTNode }; //# sourceMappingURL=ast.d.ts.map