UNPKG

@broxus/tvm-connect

Version:

Nekoton-compatible wallets connector.

13 lines (12 loc) 666 B
import * as React from 'react'; import { TvmWalletService, type TvmWalletServiceCtorParams } from '../services'; export declare const TvmWalletServiceContext: React.Context<TvmWalletService | null>; export declare function useTvmWalletService(): TvmWalletService; interface TvmWalletServiceProviderProps { agreementsNote?: React.ReactNode | false; params?: TvmWalletServiceCtorParams; recentMetaStorageKey?: string; wallet?: TvmWalletService; } export declare function TvmWalletServiceProvider({ agreementsNote, children, params, recentMetaStorageKey, wallet, }: React.PropsWithChildren<TvmWalletServiceProviderProps>): React.JSX.Element; export {};