// @flow export { default } from './request'; export type { Resp } from './request'; export { default as InternalServerError } from './InternalServerError'; export { default as RequestAbortedError } from './RequestAbortedError'; /** * Usage: Query<'requeired'|'keys'|'names'> * TODO: find a way to make it more friendly with URLSearchParams type */ export type Query = { get: (key: T) => ?string, set: (key: T, value: any) => void, };