-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.env.d.ts
58 lines (47 loc) · 1.05 KB
/
vite.env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/// <reference types="vite/client" />
/// <reference types="node" />
import * as React from 'react'
declare module '*.svg' {
import * as React from 'react'
const ReactComponent: React.FunctionComponent<React.SVGProps<SVGElement>>
export { ReactComponent }
const src: string
export default src
}
declare module '*.png' {
const content: string
export default content
}
declare module '*.jpg' {
const content: string
export default content
}
declare module '*.jpeg' {
const content: string
export default content
}
declare module '*.gif' {
const content: string
export default content
}
declare module '*.webp' {
const content: string
export default content
}
declare module '*.ico' {
const content: string
export default content
}
declare module '*.bmp' {
const content: string
export default content
}
interface ImportMetaEnv {
readonly VITE_APP_TITLE: string
readonly VITE_API_URL: string
readonly VITE_SUPABASE_URL: string
readonly VITE_SUPABASE_ANON_KEY: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}