Skip to main content
Module

x/cav/mod.ts>EndpointRequest

A server framework for Deno
Go to Latest
interface EndpointRequest
implements Request
Re-export
import { type EndpointRequest } from "https://deno.land/x/cav@0.0.21/mod.ts";

An endpoint handler can use this Request type to ferry type information to the client from the server about what client arguments are acceptable.

Type Parameters

optional
Query = never
optional
Message = never
optional
Upgrade = never

Properties

optional
__cav: { endpointRequest: { query: Query; message: Message; upgrade: Upgrade; }; routerRequest?: never; }