UNPKG

pusher-js

Version:

Pusher JavaScript library for browser, React Native, NodeJS and web workers

14 lines (11 loc) 341 B
import TransportConnection from "../../transports/transport_connection"; import Action from "../protocol/action"; import Connection from "../connection"; interface HandshakePayload { transport: TransportConnection; action: Action; connection?: Connection; activityTimeout?: number; error: any; } export default HandshakePayload;