UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

15 lines (14 loc) 530 B
/** * Copyright (c) 2019 Burst Apps Team */ import { ChainService } from '../../../service/chainService'; import { BlockIdList } from '../../../typings/blockIdList'; import { GetAccountBlocksArgs } from '../../../typings/args/getAccountBlocksArgs'; /** * Use with {@link ApiComposer} and belongs to {@link AccountApi}. * * See details at {@link AccountApi.getAccountBlockIds} * * @category factories */ export declare const getAccountBlockIds: (service: ChainService) => (args: GetAccountBlocksArgs) => Promise<BlockIdList>;