forked from lix-project/lix-website
12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
|
import { AST, Rule } from 'eslint';
|
||
|
|
||
|
|
||
|
|
||
|
declare function parse(
|
||
|
path: string,
|
||
|
content: string,
|
||
|
context: Rule.RuleContext
|
||
|
): AST.Program | null | undefined;
|
||
|
|
||
|
export default parse;
|