@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
15 lines (14 loc) • 498 B
TypeScript
/**
* Original work Copyright (c) 2019 Burst Apps Team
*/
import { ChainService } from '../../../service/chainService';
import { Account } from '../../../typings/account';
import { GetAccountArgs } from '../../../typings/args/getAccountArgs';
/**
* Use with {@link ApiComposer} and belongs to {@link AccountApi}.
*
* See details at {@link AccountApi.getAccount}
*
* @category factories
*/
export declare const getAccount: (service: ChainService) => (args: GetAccountArgs) => Promise<Account>;