ship-gis/node_modules/eslint-module-utils/parse.d.ts

12 lines
190 B
TypeScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
import { AST, Rule } from 'eslint';
declare function parse(
path: string,
content: string,
context: Rule.RuleContext
): AST.Program | null | undefined;
export default parse;