@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
9 lines (8 loc) • 308 B
TypeScript
import { WalletConfiguration } from "@coin-voyage/crypto/types/wallet";
import React from "react";
type AppContextValue = {
walletConfig?: WalletConfiguration;
};
export declare const AppContext: React.Context<AppContextValue | null>;
export declare function useAppContext(): AppContextValue;
export {};