@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
15 lines (14 loc) • 329 B
TypeScript
/**
* Original work Copyright (c) 2022 Signum Network
*/
import { AssetTransfer } from './assetTransfer';
import { Indexable } from './indexable';
/**
* Asset Transfer List
*
* @category entities
*/
export interface AssetTransferList extends Indexable {
transfers: AssetTransfer[];
requestProcessingTime: number;
}