Skip to main content
Module

x/live/clients/withManifest.ts>InvocationFunc

Open-Source web editor based on Preact, Tailwind and TypeScript. The other side of code.
Very Popular
Go to Latest
type alias InvocationFunc
import { type InvocationFunc } from "https://deno.land/x/live@1.60.16/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>>