forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
43 lines (41 loc) · 801 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
36
37
38
39
40
41
42
43
type ConfigName =
| "base"
| "essential"
| "no-layout-rules"
| "recommended"
| "strongly-recommended"
| "vue3-essential"
| "vue3-recommended"
| "vue3-strongly-recommended"
| "flat/base"
| "flat/vue2-essential"
| "flat/vue2-recommended"
| "flat/vue2-strongly-recommended"
| "flat/essential"
| "flat/recommended"
| "flat/strongly-recommended"
declare const vue: {
meta: any
configs: {
[name in keyof ConfigName]: any
}
rules: Record<string, any>
processors: {
".vue": any
vue: any
}
environments: {
/**
* @deprecated
*/
"setup-compiler-macros": {
globals: {
defineProps: "readonly"
defineEmits: "readonly"
defineExpose: "readonly"
withDefaults: "readonly"
}
}
}
}
export = vue