Files
Webklar.com/node_modules/eslint-module-utils/parse.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

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;