Type alias RedirectResponse

RedirectResponse: {
    type: "redirect";
    status: 301 | 302 | 307 | 308;
    headers: {
        location: string;
        [k: string]: string;
    };
}

Type declaration

  • type: "redirect"
  • status: 301 | 302 | 307 | 308
  • headers: {
        location: string;
        [k: string]: string;
    }
    • [k: string]: string
    • location: string

Generated using TypeDoc