import { type KvCronOptions } from "https://deno.land/x/kv_cron@0.0.2/kv_cron.ts";
KvCronOptions defines the options for creating a cron job manager.
Type Parameters
T extends JobsSchema
Properties
kv: Deno.Kv
kv is the Deno.Kv store to use for the cron job manager.
optional
kvKeyPrefix: Deno.KvKeykvKeyPrefix is the prefix of the keys used by the cron job manager.
jobs: T
jobs is a map of cron job names to cron job handlers.