| 12345678910111213141516171819202122232425 |
- interface ICustomEnv {
- NODE_ENV: string
- EXPO_PUBLIC_NODE_ENV: string
- EXPO_PUBLIC_API_URL: string
- accessSecret: string
- refreshSecret: string
- thirdId: string
- TEST_THIRD_TOKEN: string
- POSTGRESQL_ENDPOINT: string
- POSTGRESQL_USER: string
- POSTGRESQL_PASSWORD: string
- POSTGRESQL_INIT_DB: string
- MS_HOST: string
- FTP_COM: string
- FTP_KEY: string
- }
- declare module '@env' {
- export const EXPO_PUBLIC_NODE_ENV: string
- export const EXPO_PUBLIC_API_URL: string
- }
- declare namespace NodeJS {
- interface ProcessEnv extends ICustomEnv {}
- }
|