-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
28 lines (26 loc) · 688 Bytes
/
index.d.ts
File metadata and controls
28 lines (26 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import type {ESLint, Linter, Rule} from 'eslint';
declare const plugin: ESLint.Plugin & {
meta: {
name: string;
version: string;
};
rules: {
'decorator-type-match': Rule.RuleModule;
'optional-decorator-match': Rule.RuleModule;
'validate-nested-match': Rule.RuleModule;
'type-decorator-match': Rule.RuleModule;
'definite-assignment-match': Rule.RuleModule;
'dto-filename-match': Rule.RuleModule;
};
configs: {
recommended: Linter.LegacyConfig;
strict: Linter.LegacyConfig;
basic: Linter.LegacyConfig;
};
flatConfigs: {
recommended: Linter.Config;
strict: Linter.Config;
basic: Linter.Config;
};
};
export = plugin;