You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
646 B

import { parseForESLint } from "./parser/parser";
import { traverseNodes } from "./parser/traverse";
import { getStaticJSONValue, isExpression, isNumberIdentifier, isUndefinedIdentifier } from "./utils/ast";
import type * as AST from "./parser/ast";
export * as meta from "./meta";
export { name } from "./meta";
export type * from "./types";
export { parseForESLint };
export declare const VisitorKeys: import("eslint").SourceCode.VisitorKeys;
export { traverseNodes, getStaticJSONValue, isExpression, isNumberIdentifier, isUndefinedIdentifier, };
export declare function parseJSON(code: string, options?: any): AST.JSONProgram;
export { AST };