UNPKG

mysterium-tequilapi

Version:
17 lines (15 loc) 445 B
// @flow /** * Flowtype definitions for identities-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 { IdentityDTO } from "./identity"; export interface IdentitiesResponseDTO { identities: IdentityDTO[]; } declare export function parseIdentitiesResponseDTO( responseData: any ): IdentitiesResponseDTO;