@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) • 381 B
TypeScript
import type { ProxiedApp } from '../ProxiedApp';
import type { ISettingRead } from '../../definition/accessors';
import type { ISetting } from '../../definition/settings';
export declare class SettingRead implements ISettingRead {
private readonly app;
constructor(app: ProxiedApp);
getById(id: string): Promise<ISetting>;
getValueById(id: string): Promise<any>;
}