DefinitelyTyped/types/react-native-dotenv/index.d.ts
Haseeb Majid 3e4ac6cc86 Fixed Issues
Fixed issues related to code review.
2019-04-14 11:46:07 +01:00

13 lines
351 B
TypeScript

// Type definitions for react-native-dotenv 0.2
// 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;
}
declare const env: Env;
export = env;