We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14a53e7 commit c18fa80Copy full SHA for c18fa80
env.d.ts
@@ -0,0 +1,13 @@
1
+/// <reference types="vite/client" />
2
+
3
+// Global compile-time constants
4
+declare const __DEV__: boolean
5
+declare const __BROWSER__: boolean
6
+declare const __CI__: boolean
7
8
+// Global .vue shim
9
+declare module '*.vue' {
10
+ import type { DefineComponent } from 'vue'
11
+ const component: DefineComponent<{}, {}, any>
12
+ export default component
13
+}
src/global.d.ts
0 commit comments