1 | export default index;
|
2 | export type ConfigGroups = "recommended" | "stylistic" | "contents" | "logical";
|
3 | export type ConfigVariants = "" | "-typescript" | "-typescript-flavor";
|
4 | export type ErrorLevelVariants = "" | "-error";
|
5 | /**
|
6 | * @typedef {"recommended" | "stylistic" | "contents" | "logical"} ConfigGroups
|
7 | * @typedef {"" | "-typescript" | "-typescript-flavor"} ConfigVariants
|
8 | * @typedef {"" | "-error"} ErrorLevelVariants
|
9 | * @type {import('eslint').ESLint.Plugin & {
|
10 | * configs: Record<`flat/${ConfigGroups}${ConfigVariants}${ErrorLevelVariants}`, import('eslint').Linter.Config>
|
11 | * }}
|
12 | */
|
13 | declare const index: import("eslint").ESLint.Plugin & {
|
14 | configs: Record<`flat/${ConfigGroups}${ConfigVariants}${ErrorLevelVariants}`, import("eslint").Linter.Config>;
|
15 | };
|
16 | //# sourceMappingURL=index.d.ts.map |
\ | No newline at end of file |