Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/live/utils/invoke.types.ts>ManifestFunction

Open-Source web editor based on Preact, Tailwind and TypeScript. The other side of code.
Very Popular
Go to Latest
type alias ManifestFunction
import { type ManifestFunction } from "https://deno.land/x/live@1.61.5/utils/invoke.types.ts";

Type Parameters

TManifest extends AppManifest
TFunc extends string
definition: TFunc extends AvailableFunctions<TManifest> ? TManifest["functions"][TFunc] extends { default: infer TLoader; } ? TLoader extends (
req: any,
ctx: any,
props: infer Props,
) => PromiseOrValue<{ data: infer TReturn; }> ? { props: Props; return: TReturn; } : never : never : never