UNPKG

pusher-js

Version:

Pusher Channels JavaScript library for browsers, React Native, NodeJS and web workers

11 lines (8 loc) 296 B
import TransportConnection from '../../transports/transport_connection'; import Action from '../protocol/action'; import Connection from '../connection'; interface HandshakePayload extends Action { transport: TransportConnection; connection?: Connection; } export default HandshakePayload;