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) 516 B
import type { EnvironmentalVariableBridge } from '../bridges'; import type { IEnvironmentalVariableRead } from '../../definition/accessors'; export declare class EnvironmentalVariableRead implements IEnvironmentalVariableRead { private readonly bridge; private readonly appId; constructor(bridge: EnvironmentalVariableBridge, appId: string); getValueByName(envVarName: string): Promise<string>; isReadable(envVarName: string): Promise<boolean>; isSet(envVarName: string): Promise<boolean>; }