UNPKG

@libra-opensource/client-sdk-typescript

Version:
8 lines (7 loc) 387 B
import { BaseCommand, Logger } from './command'; export interface GetAccountCommand extends BaseCommand { _: ['get_account']; address: string; } export declare function getAccount(argv: GetAccountCommand, logger: Logger): Promise<void>; export declare function getAccountFromClient(argv: GetAccountCommand): Promise<import("../../interfaces/diem-jsonrpc-types").Account | null>;