securityos/node_modules/eslint-module-utils/parse.d.ts

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;