@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
15 lines (14 loc) • 485 B
TypeScript
/**
* Copyright (c) 2022 Signum Network
*/
import { ChainService } from '../../../service';
import { AssetList } from '../../../typings/assetList';
import { GetAssetsByIssuerArgs } from '../../../typings/args';
/**
* Use with {@link ApiComposer} and belongs to {@link AssetApi}.
*
* See details at {@link AssetApi.getAssetsByIssuer}
*
* @category factories
*/
export declare const getAssetsByIssuer: (service: ChainService) => (args: GetAssetsByIssuerArgs) => Promise<AssetList>;