UNPKG

agenda-admin

Version:
12 lines (11 loc) 381 B
import { OptionsType } from './options'; import Agenda from 'agenda'; import { Express } from 'express'; export interface ParamsType { publicUrl: string; mountPath: string; expressApp: Express; agenda: Agenda; options?: OptionsType; } export declare const mountAgendaAdmin: ({ publicUrl, mountPath, expressApp, agenda, options, }: ParamsType) => Promise<void>;