UNPKG

mysterium-tequilapi

Version:
20 lines (18 loc) 476 B
// @flow /** * Flowtype definitions for session * Generated by Flowgen from a Typescript Definition * Flowgen v1.5.8 * Author: [Joar Wilk](http://twitter.com/joarwilk) * Repo: http://github.com/joarwilk/flowgen */ export interface SessionDTO { sessionId: string; providerId: string; providerCountry: string; dateStarted: string; bytesSent: number; bytesReceived: number; duration: number; } declare export function validateSession(data: any): SessionDTO;