File tree 2 files changed +44
-0
lines changed
2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ type ConfigName =
2
+ | "base"
3
+ | "essential"
4
+ | "no-layout-rules"
5
+ | "recommended"
6
+ | "strongly-recommended"
7
+ | "vue3-essential"
8
+ | "vue3-recommended"
9
+ | "vue3-strongly-recommended"
10
+ | "flat/base"
11
+ | "flat/vue2-essential"
12
+ | "flat/vue2-recommended"
13
+ | "flat/vue2-strongly-recommended"
14
+ | "flat/essential"
15
+ | "flat/recommended"
16
+ | "flat/strongly-recommended"
17
+
18
+ declare const vue : {
19
+ meta : any
20
+ configs : {
21
+ [ name in keyof ConfigName ] : any
22
+ }
23
+ rules : Record < string , any >
24
+ processors : {
25
+ ".vue" : any
26
+ vue : any
27
+ }
28
+ environments : {
29
+ /**
30
+ * @deprecated
31
+ */
32
+ "setup-compiler-macros" : {
33
+ globals : {
34
+ defineProps : "readonly"
35
+ defineEmits : "readonly"
36
+ defineExpose : "readonly"
37
+ withDefaults : "readonly"
38
+ }
39
+ }
40
+ }
41
+ }
42
+
43
+ export = vue
Original file line number Diff line number Diff line change 3
3
"version" : " 9.28.0" ,
4
4
"description" : " Official ESLint plugin for Vue.js" ,
5
5
"main" : " lib/index.js" ,
6
+ "types" : " lib/index.d.ts" ,
6
7
"scripts" : {
7
8
"new" : " node tools/new-rule.js" ,
8
9
"start" : " npm run test:base -- --watch --growl" ,
You can’t perform that action at this time.
0 commit comments