mysterium-tequilapi
Version:
Api library to control mysterium client and node
22 lines (19 loc) • 537 B
Flow
// @flow
/**
* Flowtype definitions for proposals-response
* 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";
/**
* Used only as an intermediate result - is not exposed to clients.
*/
declare interface ProposalsResponseDTO {
proposals: ProposalDTO[];
}
declare export function parseProposalsResponseDTO(
responseData: any
): ProposalsResponseDTO;
declare export {};