UNPKG

@signumjs/core

Version:

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

15 lines (14 loc) 497 B
/** * Modified work Copyright (c) 2019 Burst Apps Team */ import { ChainService } from '../../../service'; import { AssetList } from '../../../typings/assetList'; import { GetAllAssetsArgs } from '../../../typings/args/getAllAssetsArgs'; /** * Use with {@link ApiComposer} and belongs to {@link AssetApi}. * * See details at {@link AssetApi.getAllAssets} * * @category factories */ export declare const getAllAssets: (service: ChainService) => (args: GetAllAssetsArgs) => Promise<AssetList>;