UNPKG

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