10 lines
269 B
TypeScript
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;
|
|
};
|
|
};
|