elearning/Frontend-Learner/node_modules/eslint-plugin-regexp/dist/utils/get-usage-of-pattern.d.ts
2026-01-13 10:48:02 +07:00

9 lines
284 B
TypeScript

import type { Rule } from "eslint";
import type { Expression } from "estree";
export declare enum UsageOfPattern {
partial = 0,
whole = 1,
mixed = 2,
unknown = 3
}
export declare function getUsageOfPattern(node: Expression, context: Rule.RuleContext): UsageOfPattern;