@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
8 lines (7 loc) • 478 B
TypeScript
import type { IConfigurationModify, ISchedulerModify, IServerSettingsModify, ISlashCommandsModify } from '../../definition/accessors';
export declare class ConfigurationModify implements IConfigurationModify {
readonly serverSettings: IServerSettingsModify;
readonly slashCommands: ISlashCommandsModify;
readonly scheduler: ISchedulerModify;
constructor(serverSettings: IServerSettingsModify, slashCommands: ISlashCommandsModify, scheduler: ISchedulerModify);
}