Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
type alias NoDataResult
import { type NoDataResult } from "https://deno.land/x/frugal@0.5.0/packages/core/Page.ts";
definition: { status:
| http.Status.MovedPermanently
| http.Status.Found
| http.Status.SeeOther
| http.Status.TemporaryRedirect
| http.Status.PermanentRedirect
; location: URL | string; headers?: HeadersInit; } | { status:
| http.Status.Unauthorized
| http.Status.PaymentRequired
| http.Status.Forbidden
| http.Status.NotFound
| http.Status.RequestTimeout
| http.Status.Conflict
| http.Status.Gone
| http.Status.Teapot
| http.Status.TooManyRequests
| http.Status.UnavailableForLegalReasons
| http.Status.InternalServerError
| http.Status.ServiceUnavailable
; headers?: HeadersInit; }