@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
16 lines (15 loc) • 430 B
TypeScript
/// <reference types="node" />
import type { ChildProcess } from 'child_process';
export declare class ProcessMessenger {
private readonly debug;
private deno;
private encoder;
private _sendStrategy;
constructor(debug: debug.Debugger);
get send(): any;
setReceiver(deno: ChildProcess): void;
clearReceiver(): void;
private switchStrategy;
private strategyError;
private strategySend;
}