Skip to main content
Module

x/messagepack_rpc/dispatcher.ts>DispatcherFrom

🦕 Deno module that allows for the implementation of MessagePack-RPC using MessagePack as the message schema.
Latest
type alias DispatcherFrom
import { type DispatcherFrom } from "https://deno.land/x/messagepack_rpc@v2.1.1/dispatcher.ts";

DispatcherFrom is a type function that infers the type of Dispatcher from an actual type.

definition: [K in keyof T]: T[K] extends (...args: infer Args) => unknown ? (...args: [K in keyof Args]: unknown) => unknown : never