@vela-ventures/aosync-sdk-react
Version:
React SDK for Beacon wallet
12 lines (11 loc) • 502 B
TypeScript
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;