19 lines
607 B
TypeScript
Raw Normal View History

import { Resp as TResp } from './request';
import { Middleware as TMiddleware } from './PromiseMiddlewareLayer';
export { default } from './request';
export { default as InternalServerError } from './InternalServerError';
export { default as RequestAbortedError } from './RequestAbortedError';
2016-07-30 21:18:58 +03:00
export type Resp<T> = TResp<T>;
export type Middleware = TMiddleware;
/**
* Usage: Query<'required'|'keys'|'names'>
* TODO: find a way to make it more friendly with URLSearchParams type
*/
2019-12-07 13:28:52 +02:00
export type Query<T extends string> = {
2020-05-24 02:08:24 +03:00
get: (key: T) => string | void;
set: (key: T, value: any) => void;
};