bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
10 lines (9 loc) • 319 B
TypeScript
import { Task } from "../Task";
import * as tbbox from "@sinclair/typebox";
export declare class RenderTask<Output extends Record<string, any>> extends Task<typeof RenderTask.schema, Output> {
type: string;
static schema: tbbox.TObject<{
render: tbbox.TString;
}>;
execute(): Promise<Output>;
}