UNPKG

kued

Version:

Extensions for the Kue library (Daemonization, Checkpointing, etc.)

10 lines (8 loc) 270 B
'use strict'; const Joi = require('joi'); module.exports = Joi.object().keys({ cronTime: Joi.string().required(), onComplete: Joi.alternatives().try(Joi.string(), Joi.func()), onTick: Joi.alternatives().try(Joi.string(), Joi.func()), timeZone: Joi.string() });