raas-server
Version:
rhamt as a service server
13 lines (12 loc) • 671 B
TypeScript
import * as rpc from 'vscode-jsonrpc';
import { AbstractHandler } from './abstractHandler';
import { RuntimeService } from './services/runtimeService';
import { InstallationService } from './services/installationService';
import { InstallableServerService } from './services/installableServerService';
export declare class MessageHandler extends AbstractHandler {
private runtimeService;
private installableServerService;
private installationService;
constructor(connection: rpc.MessageConnection, runtimeService: RuntimeService, installableServerService: InstallableServerService, installationService: InstallationService);
protected init(): void;
}