@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
10 lines • 467 B
TypeScript
/// <reference types="react" />
import { CustomNetworkType, EnvironmentsEnum, IDappProvider } from 'types';
export interface AppInitializerPropsType {
customNetworkConfig?: CustomNetworkType;
children: any;
externalProvider?: IDappProvider;
environment: EnvironmentsEnum;
}
export declare function AppInitializer({ customNetworkConfig, children, environment }: AppInitializerPropsType): JSX.Element | null;
//# sourceMappingURL=AppInitializer.d.ts.map