UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

9 lines (8 loc) 268 B
type RedirectTemplate = { from?: string; absoluteLocation: string | URL; status: number; relativeLocation: string; }; export declare function redirectTemplate({ status, absoluteLocation, relativeLocation, from, }: RedirectTemplate): string; export {};