@broxus/tvm-connect
Version:
Nekoton-compatible wallets connector.
12 lines (11 loc) • 344 B
TypeScript
import * as React from 'react';
import './index.css';
export interface TvmConnectDialogProps {
className?: string;
open?: boolean;
type?: 'drawer';
onClose?: VoidFunction;
}
export declare const TvmConnectDialog: (({ className, open, type, onClose }: TvmConnectDialogProps) => React.JSX.Element) & {
displayName: string;
};