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