mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
22 lines
453 B
TypeScript
22 lines
453 B
TypeScript
declare module 'react-native-dotenv' {
|
|
/**
|
|
* URL for the Mimoto backend server
|
|
*/
|
|
export const MIMOTO_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;
|
|
}
|