UNPKG

agenda-admin

Version:
10 lines (9 loc) 341 B
import { NextFunction, Request, Response } from 'express'; interface RequestBodyType { name: string; repeatInterval?: string; schedule?: string; data?: Record<string, unknown>; } export declare const createNewJob: (req: Request<any, any, any, RequestBodyType>, res: Response, next: NextFunction) => Promise<void>; export {};