UNPKG

@signumjs/core

Version:

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

15 lines (14 loc) 286 B
import { Asset } from './asset'; import { Indexable } from './indexable'; /** * Original work Copyright (c) 2019 Burst Apps Team */ /** * Asset List * * @category entities */ export interface AssetList extends Indexable { assets: Asset[]; requestProcessingTime: number; }