source: frontend/node_modules/eslint-module-utils/parse.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 190 bytes
Line 
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;
Note: See TracBrowser for help on using the repository browser.