UNPKG

fortmatic

Version:
23 lines (22 loc) 450 B
import { BaseModule } from '../base-module'; /** * */ export declare class UserModule extends BaseModule { /** */ login(): Promise<string[]>; /** */ logout(): Promise<void>; /** */ getUser(): Promise<any>; /** */ getBalances(): Promise<any>; /** */ getTransactions(): Promise<any>; /** */ isLoggedIn(): Promise<any>; /** */ settings(): Promise<any>; /** */ deposit(): Promise<any>; }