nixos/home/ags/node_modules/eslint-module-utils/parse.d.ts
2025-02-27 02:26:55 +01:00

11 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;