UNPKG

@atomist/automation-client

Version:
14 lines 460 B
import * as WebSocket from "ws"; import { RequestProcessor } from "../RequestProcessor"; export interface WebSocketRequestProcessor extends RequestProcessor { onRegistration(registration: RegistrationConfirmation): any; onConnect(ws: WebSocket): any; onDisconnect(): any; } export interface RegistrationConfirmation { url: string; jwt: string; name: string; version: string; } //# sourceMappingURL=WebSocketRequestProcessor.d.ts.map