import { EntityDict } from './Entity'; import { AsyncContext } from "../store/AsyncRowStore"; type RoutineFn> = (context: Cxt) => Promise; export type Routine> = { name: string; fn: RoutineFn; }; export type Timer> = { name: string; cron: string; fn: RoutineFn; }; export {};