// @flow /** * Flowtype definitions for consumer-location * 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 ConsumerLocationDTO { ip?: string; asn: any; isp?: string; continent?: string; country?: string; city?: string; node_type?: string; } declare export function parseConsumerLocationDTO( data: any ): ConsumerLocationDTO;