agenda-admin
Version:
A dashboard for agenda.js
12 lines (11 loc) • 381 B
TypeScript
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>;