Skip to content

Commit

Permalink
Fix Linter type import in index.d.ts (#2572)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocavue authored Oct 14, 2024
1 parent 635b6ed commit aa476d6
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { Linter } from 'eslint'

declare const vue: {
meta: any
configs: {
Expand All @@ -19,19 +21,19 @@ declare const vue: {
}
rules: Record<string, any>
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'
}
}
}
Expand Down

0 comments on commit aa476d6

Please sign in to comment.