UNPKG

@naturalcycles/js-lib

Version:

Standard library for universal (browser + Node.js) javascript

8 lines (7 loc) 292 B
export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD'; export type HttpStatusFamily = 5 | 4 | 3 | 2 | 1; /** * Number, representing a valid Http status code (e.g 401, 500, etc) */ export type HttpStatusCode = number; export declare const HTTP_METHODS: HttpMethod[];