forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
35 lines (27 loc) · 869 Bytes
/
index.d.ts
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
29
30
31
32
33
34
35
import type { Linter } from 'eslint'
declare const vue: {
meta: any
configs: {
base: Linter.LegacyConfig
'vue2-essential': Linter.LegacyConfig
'vue2-strongly-recommended': Linter.LegacyConfig
'vue2-recommended': Linter.LegacyConfig
'vue3-essential': Linter.LegacyConfig
'vue3-strongly-recommended': Linter.LegacyConfig
'vue3-recommended': Linter.LegacyConfig
'flat/base': Linter.FlatConfig[]
'flat/vue2-essential': Linter.FlatConfig[]
'flat/vue2-strongly-recommended': Linter.FlatConfig[]
'flat/vue2-recommended': Linter.FlatConfig[]
'flat/essential': Linter.FlatConfig[]
'flat/strongly-recommended': Linter.FlatConfig[]
'flat/recommended': Linter.FlatConfig[]
'no-layout-rules': Linter.LegacyConfig
}
rules: Record<string, any>
processors: {
'.vue': any
vue: any
}
}
export = vue