UNPKG

mysterium-tequilapi

Version:
23 lines (21 loc) 570 B
// @flow /** * Flowtype definitions for service-info * Generated by Flowgen from a Typescript Definition * Flowgen v1.5.8 * Author: [Joar Wilk](http://twitter.com/joarwilk) * Repo: http://github.com/joarwilk/flowgen */ import { ProposalDTO } from "./proposal"; import { ServiceStatus } from "./service-status"; export interface ServiceInfoDTO { id: string; providerId: string; type: string; options?: { [key: string]: any }; status: ServiceStatus; proposal: ProposalDTO; } declare export function parseServiceInfoDTO(data: any): ServiceInfoDTO;