parse.d.ts 190 B

1234567891011
  1. import { AST, Rule } from 'eslint';
  2. declare function parse(
  3. path: string,
  4. content: string,
  5. context: Rule.RuleContext
  6. ): AST.Program | null | undefined;
  7. export default parse;