-
Notifications
You must be signed in to change notification settings - Fork 20
/
env.d.ts
49 lines (39 loc) · 1.54 KB
/
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
/* eslint-disable import/no-default-export */
declare module '*.svg' {
const Component: (props: import('react').SVGProps<SVGSVGElement>) => JSX.Element
export default Component
}
declare module 'react-datetime-picker/dist/entry.nostyle' {
export { default } from 'react-datetime-picker'
export * from 'react-datetime-picker'
}
declare namespace NodeJS {
declare interface ProcessEnv {
readonly APP_VERSION: string
readonly NEXT_PUBLIC_CW1_SUBKEYS_CODE_ID: string
readonly NEXT_PUBLIC_CW20_BASE_CODE_ID: string
readonly NEXT_PUBLIC_CW20_BONDING_CODE_ID: string
readonly NEXT_PUBLIC_CW20_MERKLE_DROP_CODE_ID: string
readonly NEXT_PUBLIC_CW20_STAKING_CODE_ID: string
readonly NEXT_PUBLIC_CW721_BASE_CODE_ID: string
readonly NEXT_PUBLIC_API_URL: string
readonly NEXT_PUBLIC_BLOCK_EXPLORER_URL: string
readonly NEXT_PUBLIC_ESCROW_AMOUNT: string
readonly NEXT_PUBLIC_ESCROW_CONTRACT_ADDRESS: string
readonly NEXT_PUBLIC_NETWORK: string
readonly NEXT_PUBLIC_WEBSITE_URL: string
readonly NEXT_PUBLIC_AIRDROP_ACCOUNT_LIMIT: string
readonly NEXT_PUBLIC_S3_BUCKET: string
readonly NEXT_PUBLIC_S3_ENDPOINT: string
readonly NEXT_PUBLIC_S3_KEY: string
readonly NEXT_PUBLIC_S3_REGION: string
readonly NEXT_PUBLIC_S3_SECRET: string
}
}
type KeplrWindow = import('@keplr-wallet/types/src/window').Window
declare interface Window extends KeplrWindow {
confetti?: (obj: any) => void
}
declare const __DEV__: boolean
declare const __PROD__: boolean
/* eslint-enable import/no-default-export */