@broxus/tvm-connect
Version:
TypeScript SDK for connecting to Nekoton-compatible wallets using a unified interface.
11 lines (10 loc) • 354 B
TypeScript
import * as React from 'react';
import { type PopupType } from '../types';
export interface TvmConnectDialogProps {
agreementsNote?: React.ReactNode | false;
className?: string;
isActive?: boolean;
popupType?: PopupType;
onClose?: VoidFunction;
}
export declare const TvmConnectDialog: React.FunctionComponent<TvmConnectDialogProps>;