@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
10 lines (9 loc) • 482 B
TypeScript
import type { ISchedulerExtend } from '../../definition/accessors';
import type { IProcessor } from '../../definition/scheduler';
import type { AppSchedulerManager } from '../managers/AppSchedulerManager';
export declare class SchedulerExtend implements ISchedulerExtend {
private readonly manager;
private readonly appId;
constructor(manager: AppSchedulerManager, appId: string);
registerProcessors(processors?: Array<IProcessor>): Promise<void | Array<string>>;
}