diff --git a/lib/index.d.ts b/lib/index.d.ts index 48006c40a..2651c4d55 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -1,3 +1,5 @@ +import type { Linter } from 'eslint' + declare const vue: { meta: any configs: { @@ -19,19 +21,19 @@ declare const vue: { } rules: Record processors: { - ".vue": any + '.vue': any vue: any } environments: { /** * @deprecated */ - "setup-compiler-macros": { + 'setup-compiler-macros': { globals: { - defineProps: "readonly" - defineEmits: "readonly" - defineExpose: "readonly" - withDefaults: "readonly" + defineProps: 'readonly' + defineEmits: 'readonly' + defineExpose: 'readonly' + withDefaults: 'readonly' } } }