mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-08 21:18:14 -05:00
* feat(inji-344): add flipper config for mmkv and xstate * feat(inji-409): Add flipper config file and enable devtools for all machines * feat(inji-409): Add react-navigation to flipper config
47 lines
928 B
TypeScript
47 lines
928 B
TypeScript
declare module 'react-native-dotenv' {
|
|
/**
|
|
* URL for the Mimoto backend server
|
|
*/
|
|
export const MIMOTO_HOST: string;
|
|
|
|
/**
|
|
* URL for the Esignet backend server
|
|
*/
|
|
export const ESIGNET_HOST: string;
|
|
|
|
/**
|
|
* URL for the obsrv server for telemetry
|
|
*/
|
|
export const OBSRV_HOST: string;
|
|
|
|
/**
|
|
* API key to use Google Nearby Messages API
|
|
*/
|
|
export const GOOGLE_NEARBY_MESSAGES_API_KEY: string;
|
|
|
|
/**
|
|
* Flag for Toggling Purple Theme and Default Theme
|
|
*/
|
|
export const APPLICATION_THEME: string;
|
|
|
|
/**
|
|
* Flag for Toggling environment url
|
|
*/
|
|
export const CREDENTIAL_REGISTRY_EDIT: string;
|
|
|
|
/**
|
|
* Flag for Toggling Download via UIN/VID
|
|
*/
|
|
export const ENABLE_OPENID_FOR_VC: string;
|
|
|
|
/**
|
|
* LANGUAGE for the unsupported device languages
|
|
*/
|
|
export const APPLICATION_LANGUAGE: string;
|
|
|
|
/**
|
|
* Flag for Toggling debug mode
|
|
*/
|
|
export const DEBUG_MODE: string;
|
|
}
|