import { Handler } from "https://deno.land/x/evt@v2.5.6/lib/types/index.ts";
Type Aliases
Handlers params that come from the arguments passed to the method invoked | |
Handlers params that are implicitly specified by the method used: attachOnce => once attachOncePrepend => once + prepend waitFor => once + async ... | |
import { type Handler } from "https://deno.land/x/evt@v2.5.6/lib/types/index.ts";
definition: Handler.PropsFromArgs<T, U, CtxProp> & Handler.PropsFromMethodName & Readonly<{ promise: Promise<U>; detach(): boolean; }>