-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathenv.d.ts
More file actions
36 lines (28 loc) · 984 Bytes
/
env.d.ts
File metadata and controls
36 lines (28 loc) · 984 Bytes
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
interface EnvironmentVariables {
readonly TIDX_BASIC_AUTH: string | undefined
readonly SENTRY_AUTH_TOKEN: string | undefined
readonly SENTRY_ORG: string | undefined
readonly SENTRY_PROJECT: string | undefined
readonly SENTRY_DSN: string | undefined
readonly SENTRY_TRACES_SAMPLE_RATE: string | undefined
readonly VITE_SENTRY_DSN: string | undefined
readonly VITE_SENTRY_TRACES_SAMPLE_RATE: string | undefined
readonly VITE_CONTRACT_VERIFICATION_API_BASE_URL: string
readonly VITE_TEMPO_ENV: 'testnet' | 'devnet' | 'mainnet'
readonly TEMPO_RPC_KEY: string
}
interface ImportMetaEnv extends EnvironmentVariables {}
interface ImportMeta {
readonly env: ImportMetaEnv
}
declare namespace NodeJS {
interface ProcessEnv extends EnvironmentVariables {
readonly NODE_ENV: 'development' | 'production' | 'test'
}
}
declare const __BASE_URL__: string
declare const __BUILD_VERSION__: string
declare module 'shiki/onig.wasm' {
const wasm: unknown
export default wasm
}