@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) • 425 B
TypeScript
import type { IEnvironmentRead, IHttp, IRead } from '.';
import type { IApiEndpointMetadata } from '../api';
import type { IEnvironmentWrite } from './IEnvironmentWrite';
export interface IAppAccessors {
readonly environmentReader: IEnvironmentRead;
readonly environmentWriter: IEnvironmentWrite;
readonly reader: IRead;
readonly http: IHttp;
readonly providedApiEndpoints: Array<IApiEndpointMetadata>;
}