UNPKG

703 BTypeScriptView Raw
1export declare const GET = "get";
2export declare const POST = "post";
3export declare const PUT = "put";
4export declare const DELETE = "delete";
5export declare type RequestMethod = typeof GET | typeof POST | typeof PUT | typeof DELETE;
6export declare const X_ORGANIZATION = "X-Organization";
7export declare const X_CLIENT_TZ = "X-Client-Tz";
8export declare const OK = 200;
9export declare const CREATED = 201;
10export declare const MOVED_PERMANENTLY = 301;
11export declare const BAD_REQUEST = 400;
12export declare const UNAUTHORIZED = 401;
13export declare const FORBIDDEN = 403;
14export declare const IM_A_TEAPOT = 418;
15export declare const INTERNAL_SERVER_ERROR = 500;
16export declare const BAD_GATEWAY = 502;