UNPKG

@rocket.chat/apps-engine

Version:

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

11 lines (10 loc) 510 B
import type { ISettingUpdater } from '../../definition/accessors/ISettingUpdater'; import type { ISetting } from '../../definition/settings'; import type { AppSettingsManager } from '../managers'; import type { ProxiedApp } from '../ProxiedApp'; export declare class SettingUpdater implements ISettingUpdater { private readonly app; private readonly manager; constructor(app: ProxiedApp, manager: AppSettingsManager); updateValue(id: ISetting['id'], value: ISetting['value']): Promise<void>; }