UNPKG

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) 269 B
import { Task } from "../Task"; import * as tbbox from "@sinclair/typebox"; export declare class LogTask extends Task<typeof LogTask.schema> { type: string; static schema: tbbox.TObject<{ delay: tbbox.TNumber; }>; execute(): Promise<boolean>; }