UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

9 lines (8 loc) 249 B
export interface IInternalSchedulerBridge { /** * Cancels all the running jobs from the app * For apps-engine's internal use * @param appId the id of the app calling this */ cancelAllJobs(appId: string): Promise<void>; }