UNPKG

vendure-cron-plugin

Version:

Adds a simple CRON functionality to Vendure

13 lines (12 loc) 241 B
/** * The plugin can be configured using the following options: */ export interface Job { schedule: string; task?: () => void; taskId?: string; } export interface PluginInitOptions { cron: Job[]; logEvents?: boolean; }