@broxus/tvm-connect
Version:
TypeScript SDK for connecting to Nekoton-compatible wallets using a unified interface.
15 lines (14 loc) • 731 B
TypeScript
import * as React from 'react';
import { TvmConnectDialogStore } from '../stores';
import { type PopupType } from '../types';
export declare const TvmConnectDialogStoreContext: React.Context<TvmConnectDialogStore | null>;
export declare function useTvmConnectDialog(): TvmConnectDialogStore;
interface TvmConnectDialogStoreProviderProps {
agreementsNote?: React.ReactNode | false;
className?: string;
popupType?: PopupType;
qrEnabled?: boolean;
recentMetaStorageKey?: string;
}
export declare function TvmConnectDialogStoreProvider({ agreementsNote, children, className, popupType, qrEnabled, recentMetaStorageKey, }: React.PropsWithChildren<TvmConnectDialogStoreProviderProps>): React.ReactElement;
export {};