UNPKG

@blackglory/http-status

Version:
28 lines (27 loc) 786 B
import { HTTPStatus } from './http-status.js'; export declare class HTTPRedirection implements HTTPStatus { readonly code: number; readonly message: string; constructor(code: number, message: string); } export declare class MultipleChoice extends HTTPRedirection { constructor(); } export declare class MovedPermanently extends HTTPRedirection { constructor(); } export declare class Found extends HTTPRedirection { constructor(); } export declare class SeeOther extends HTTPRedirection { constructor(); } export declare class NotModified extends HTTPRedirection { constructor(); } export declare class TemporaryRedirect extends HTTPRedirection { constructor(); } export declare class PermanentRedirect extends HTTPRedirection { constructor(); }