mysterium-tequilapi
Version:
Api library to control mysterium client and node
14 lines (13 loc) • 363 B
TypeScript
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;
}
export declare function parseServiceInfoDTO(data: any): ServiceInfoDTO;