UNPKG

@signumjs/wallets

Version:

Wallets communication package for DApps in the Signum Network

8 lines (7 loc) 405 B
import { EasyWallet, EasyWalletPayArgs } from '../typings'; import { GenericDeeplinkableWallet } from './genericDeeplinkableWallet'; import { DeeplinkableWalletOptions } from './deepLinkableOptions'; export declare class DeeplinkableWallet extends GenericDeeplinkableWallet implements EasyWallet { constructor(options?: DeeplinkableWalletOptions); pay(args: EasyWalletPayArgs): Promise<string>; }