@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) • 548 B
TypeScript
import type { IEnvironmentalVariableRead, IEnvironmentRead, IServerSettingRead, ISettingRead } from '../../definition/accessors';
export declare class EnvironmentRead implements IEnvironmentRead {
private readonly settings;
private readonly serverSettings;
private readonly envRead;
constructor(settings: ISettingRead, serverSettings: IServerSettingRead, envRead: IEnvironmentalVariableRead);
getSettings(): ISettingRead;
getServerSettings(): IServerSettingRead;
getEnvironmentVariables(): IEnvironmentalVariableRead;
}