import {Indexable} from './indexable'; import { Contract } from '@turajs/contracts'; /** * Copyright (c) 2019 Burst Apps Team */ /** * The Contract Id List * @module core */ export interface ContractList extends Indexable { ats: Contract[]; requestProcessingTime: number; }