版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

10 строки
269 B

  1. import type { SourceCode } from "eslint";
  2. import type { JSONProgram } from "./ast";
  3. export declare function parseForESLint(code: string, options?: any): {
  4. ast: JSONProgram;
  5. visitorKeys: SourceCode.VisitorKeys;
  6. services: {
  7. isJSON: boolean;
  8. };
  9. };