2025-09-05 14:59:21 +08:00

10 lines
269 B
TypeScript

import type { SourceCode } from "eslint";
import type { JSONProgram } from "./ast";
export declare function parseForESLint(code: string, options?: any): {
ast: JSONProgram;
visitorKeys: SourceCode.VisitorKeys;
services: {
isJSON: boolean;
};
};