elearning/Frontend-Learner/node_modules/eslint-plugin-regexp/dist/utils/regexp-ast/quantifier.d.ts

9 lines
302 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import type { Quantifier } from "@eslint-community/regexpp/ast";
export declare function getQuantifierOffsets(qNode: Quantifier): [number, number];
export interface Quant {
min: number;
max: number;
greedy?: boolean;
}
export declare function quantToString(quant: Readonly<Quant>): string;