Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/blocks/routes/live/invoke/index.ts>InvokeResult

deco is the edge-native site editor and app framework for building dynamic, high-performance sites with a built-in visual admin UI.
Go to Latest
type alias InvokeResult
import { type InvokeResult } from "https://deno.land/x/blocks@1.28.0-beta.4/routes/live/invoke/index.ts";

Type Parameters

TPayload extends Invoke<TManifest, any, any> | Record<string, Invoke<TManifest, any, any>>
optional
TManifest extends AppManifest = AppManifest
definition: TPayload extends Invoke<TManifest, infer TFunc, any> ? ReturnWith<ManifestInvocable<TManifest, TFunc>["return"], TPayload> : TPayload extends Record<string, any> ? [key in keyof TPayload]: TPayload[key] extends Invoke<TManifest, infer TFunc, any> ? ReturnWith<ManifestInvocable<TManifest, TFunc>["return"], TPayload[key]> : unknown : unknown