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

x/live/clients/withManifest.ts>InvocationFunc

Open-Source web editor based on Preact, Tailwind and TypeScript. The other side of code.
Go to Latest
type alias InvocationFunc
import { type InvocationFunc } from "https://deno.land/x/live@1.57.1/clients/withManifest.ts";

Type Parameters

TManifest extends AppManifest
definition: <TInvocableKey extends AvailableFunctions<TManifest> | AvailableLoaders<TManifest> | AvailableActions<TManifest>, TFuncSelector extends TInvocableKey extends AvailableFunctions<TManifest> ? DotNestedKeys<ManifestFunction<TManifest, TInvocableKey>["return"]> : TInvocableKey extends AvailableActions<TManifest> ? DotNestedKeys<ManifestAction<TManifest, TInvocableKey>["return"]> : TInvocableKey extends AvailableLoaders<TManifest> ? DotNestedKeys<ManifestLoader<TManifest, TInvocableKey>["return"]> : never, TPayload extends Invoke<TManifest, TInvocableKey, TFuncSelector>>(key: TInvocableKey, props?: Invoke<TManifest, TInvocableKey, TFuncSelector>["props"]) => Promise<InvokeResult<TPayload, TManifest>>