UNPKG

eslint-module-utils

Version:

Core utilities to support eslint-plugin-import and other module-related plugins.

12 lines (7 loc) 190 B
import { AST, Rule } from 'eslint'; declare function parse( path: string, content: string, context: Rule.RuleContext ): AST.Program | null | undefined; export default parse;