UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

6 lines (5 loc) 257 B
export interface ScheduledJob { stop(): Promise<void>; } export declare function validateCron(rule: string): boolean; export declare function scheduleSynchronizedJob(id: string, rule: string, cb: (fireDate: Date) => void | Promise<void>): ScheduledJob;