UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

11 lines (9 loc) 167 B
import {Trade} from './trade'; /** * Trade List * @module core */ export interface TradeList { trades: Trade[]; requestProcessingTime: number; }