forked from cerc-io/laconic-wallet
Part of https://www.notion.so/WalletConnect-integration-84b2f7377d514d7ead698bebd84f1e31 - Use `react-native-config` library Co-authored-by: Shreerang Kale <shreerangkale@gmail.com> Reviewed-on: cerc-io/laconic-wallet#1
10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
// Reference: https://github.com/lugg/react-native-config?tab=readme-ov-file#typescript-declaration-for-your-env-file
|
|
declare module 'react-native-config' {
|
|
export interface NativeConfig {
|
|
WALLET_CONNECT_PROJECT_ID: string;
|
|
}
|
|
|
|
export const Config: NativeConfig;
|
|
export default Config;
|
|
}
|