/** * HTTP status utilities */ import { getStatusPhrase, HTTP_STATUS, HTTP_STATUS_PHRASES, isClientError, isErrorStatus, isServerError, isSuccessStatus } from '@g-1/util'; export { getStatusPhrase, HTTP_STATUS, HTTP_STATUS_PHRASES, isClientError, isErrorStatus, isServerError, isSuccessStatus, }; export declare const OK: 200, CREATED: 201, NO_CONTENT: 204, BAD_REQUEST: 400, UNAUTHORIZED: 401, FORBIDDEN: 403, NOT_FOUND: 404, CONFLICT: 409, UNPROCESSABLE_ENTITY: 422, TOO_MANY_REQUESTS: 429, INTERNAL_SERVER_ERROR: 500; export declare const SUCCESS: 200; export declare const ERROR: 500; export declare function isSuccess(statusCode: number): boolean; //# sourceMappingURL=http-status.d.ts.map