@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
12 lines (11 loc) • 422 B
TypeScript
import type { ISetting } from '../../definition/settings';
import type { AppManager } from '../AppManager';
export declare class AppSettingsManager {
private manager;
constructor(manager: AppManager);
getAppSettings(appId: string): {
[key: string]: ISetting;
};
getAppSetting(appId: string, settingId: string): ISetting;
updateAppSetting(appId: string, setting: ISetting): Promise<void>;
}