UNPKG

eslint-plugin-regexp

Version:

ESLint plugin for finding RegExp mistakes and RegExp style guide violations.

10 lines (9 loc) 381 B
import type { Rule } from "eslint"; import type * as ES from "estree"; export type TypeTracker = { isString: (node: ES.Expression) => boolean; maybeString: (node: ES.Expression) => boolean; isRegExp: (node: ES.Expression) => boolean; getTypes: (node: ES.Expression) => string[]; }; export declare function createTypeTracker(context: Rule.RuleContext): TypeTracker;