UNPKG

@vela-ventures/aosync-sdk-react

Version:
12 lines (11 loc) 502 B
export { useWallet } from "./useWallet"; import React, { PropsWithChildren } from "react"; import { AppInfo, GatewayConfig } from "arconnect"; import { AOSyncSDKContext } from "./types"; export declare const AOSyncContext: React.Context<AOSyncSDKContext | undefined>; interface Props extends PropsWithChildren { gatewayConfig: GatewayConfig; muUrl: string; appInfo?: AppInfo; } export declare function AOSyncProvider({ gatewayConfig, muUrl, children, appInfo, }: Props): React.JSX.Element;