@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) • 305 B
TypeScript
import type { IServerSettingUpdater } from './IServerSettingUpdater';
import type { ISettingUpdater } from './ISettingUpdater';
/**
* Allows write-access to the App's settings,
*/
export interface IEnvironmentWrite {
getSettings(): ISettingUpdater;
getServerSettings(): IServerSettingUpdater;
}