Fixed some bugs

This commit is contained in:
Haseeb Majid
2019-04-10 20:22:34 +01:00
parent aeadde1b97
commit 4b3d5689de

View File

@@ -2,9 +2,12 @@
// Project: https://github.com/zetachang/react-native-dotenv
// Definitions by: hmajid2301 <https://github.com/hmajid2301>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.0
interface Env {
[name: string]: string;
}
export const env: Env;
declare const env: Env;
export { env };