UNPKG

@steambrew/client

Version:
19 lines (18 loc) 575 B
import { OperationResponse } from './shared'; export interface WebUITransport { GetTransportInfo(): Promise<TransportInfo>; /** * Tells Steam the websocket failed and opens a troubleshooting dialog. * * The responsible message for this is `CMsgWebUITransportFailure`. * * @param base64 Serialized ProtoBuf message. */ NotifyTransportFailure(base64: string): Promise<OperationResponse>; } export interface TransportInfo { authKeyClientdll: string; authKeySteamUI: string; portClientdll: number; portSteamUI: number; }