import agenda from 'agenda'; import Routine from './Routine'; import web from '../web/Server'; interface RoutinesOptions { mongoConString: string; web: web; } export default class RoutineLoader { Agenda: agenda; Web: web; apm: any; constructor(options: RoutinesOptions, Apm?: any); addJob(routine: Routine): Promise; stop(): Promise; } export {};