elearning/Frontend-Learner/node_modules/eslint-plugin-regexp/dist/utils/get-usage-of-pattern.d.ts

10 lines
284 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
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;