Skip to content

Commit aa476d6

Browse files
authored
Fix Linter type import in index.d.ts (#2572)
1 parent 635b6ed commit aa476d6

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

lib/index.d.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import type { Linter } from 'eslint'
2+
13
declare const vue: {
24
meta: any
35
configs: {
@@ -19,19 +21,19 @@ declare const vue: {
1921
}
2022
rules: Record<string, any>
2123
processors: {
22-
".vue": any
24+
'.vue': any
2325
vue: any
2426
}
2527
environments: {
2628
/**
2729
* @deprecated
2830
*/
29-
"setup-compiler-macros": {
31+
'setup-compiler-macros': {
3032
globals: {
31-
defineProps: "readonly"
32-
defineEmits: "readonly"
33-
defineExpose: "readonly"
34-
withDefaults: "readonly"
33+
defineProps: 'readonly'
34+
defineEmits: 'readonly'
35+
defineExpose: 'readonly'
36+
withDefaults: 'readonly'
3537
}
3638
}
3739
}

0 commit comments

Comments
 (0)