build: add dotenv

This commit is contained in:
Paolo Miguel de Leon
2022-09-05 09:26:33 +08:00
parent 0ee1da963e
commit c2dd086ce8
11 changed files with 82 additions and 16 deletions

11
types/react-native-dotenv/index.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
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;
}