版博士V2.0程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

espree.d.ts 249 B

12345678
  1. export interface ESPree {
  2. latestEcmaVersion?: number;
  3. version: string;
  4. }
  5. export declare function getEspree(): ESPree;
  6. declare type NewestKind = "cwd" | "linter" | "self";
  7. export declare function getNewestEspreeKind(): NewestKind;
  8. export {};