UNPKG

bknd

Version:

Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.

14 lines (13 loc) 499 B
import { Task } from "../Task"; import * as tbbox from "@sinclair/typebox"; export declare class SubFlowTask<Output extends Record<string, any>> extends Task<typeof SubFlowTask.schema, Output> { type: string; static schema: tbbox.TObject<{ flow: tbbox.TAny; input: tbbox.TOptional<tbbox.TTransform<tbbox.TUnion<[{ title: string; } & tbbox.TAny, tbbox.TString]>, any>>; loop: tbbox.TOptional<tbbox.TBoolean>; }>; execute(): Promise<any>; }