File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change
1
+ /// <reference types="vite/client" />
2
+
3
+ // Global compile-time constants
4
+ declare var __COMMIT__ : string
5
+
6
+ declare module 'file-saver' {
7
+ export function saveAs ( blob : any , name : any ) : void
8
+ }
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ declare var __ESM_BUNDLER__: boolean
7
7
declare var __ESM_BROWSER__ : boolean
8
8
declare var __CJS__ : boolean
9
9
declare var __SSR__ : boolean
10
- declare var __COMMIT__ : string
11
10
declare var __VERSION__ : string
12
11
declare var __COMPAT__ : boolean
13
12
@@ -19,10 +18,6 @@ declare var __FEATURE_PROD_HYDRATION_MISMATCH_DETAILS__: boolean
19
18
20
19
declare module '*.vue' { }
21
20
22
- declare module 'file-saver' {
23
- export function saveAs ( blob : any , name : any ) : void
24
- }
25
-
26
21
declare module 'estree-walker' {
27
22
export function walk < T > (
28
23
root : T ,
You can’t perform that action at this time.
0 commit comments