// @flow /** * Flowtype definitions for connection-statistics * 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 ConnectionStatisticsDTO { duration: number; bytesReceived: number; bytesSent: number; } declare export function parseConnectionStatisticsDTO( data: any ): ConnectionStatisticsDTO;