elearning/Frontend-Learner/node_modules/eslint-plugin-regexp/dist/index.d.ts
2026-01-13 10:48:02 +07:00

15 lines
514 B
TypeScript

import * as all from "./configs/all";
import * as flatAll from "./configs/flat/all";
import * as flatRecommended from "./configs/flat/recommended";
import * as recommended from "./configs/recommended";
import type { RuleModule } from "./types";
export * as meta from "./meta";
export declare const configs: {
recommended: typeof recommended;
all: typeof all;
"flat/all": typeof flatAll;
"flat/recommended": typeof flatRecommended;
};
export declare const rules: {
[key: string]: RuleModule;
};