Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/endofunctor/components/http/types.ts>CyclePlugin

🌍 Vixeny: A runtime-agnostic, performance-centric library championing functional purity for modern web development.
Go to Latest
type alias CyclePlugin
import { type CyclePlugin } from "https://deno.land/x/endofunctor@v0.0.945/components/http/types.ts";
definition: { readonly name: symbol; readonly f: (o?: FunRouterOptions) => (p: Petition) => (r: Request | [Request, Record<string, unknown>]) => any; readonly type: unknown; readonly options?: { [k: string]: any; }; } | { readonly name: symbol; readonly isFunction: true; readonly f: (o?: FunRouterOptions) => (p: Petition) => any; readonly type: unknown; readonly options?: { [k: string]: any; }; } | { }