2019-12-07 13:28:52 +02:00
|
|
|
export { default, Resp } from './request';
|
|
|
|
export { Middleware } from './PromiseMiddlewareLayer';
|
2017-08-01 23:00:02 +03:00
|
|
|
export { default as InternalServerError } from './InternalServerError';
|
2018-11-04 10:09:42 +02:00
|
|
|
export { default as RequestAbortedError } from './RequestAbortedError';
|
2016-07-30 21:18:58 +03:00
|
|
|
|
2017-08-07 23:11:39 +03:00
|
|
|
/**
|
|
|
|
* Usage: Query<'requeired'|'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> = {
|
|
|
|
get: (key: T) => string | void;
|
|
|
|
set: (key: T, value: any) => void;
|
2017-08-07 23:11:39 +03:00
|
|
|
};
|