espree.d.ts 233 B

12345678910
  1. declare module 'espree' {
  2. type Config = {
  3. ecmaVersion: number,
  4. comment: boolean,
  5. tokens: boolean,
  6. range: boolean,
  7. loc: boolean
  8. }
  9. function parse(code: string, config: Config): import('eslint').AST.Program;
  10. }