MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //home/cafsindia/snap.cafsinfotech.in/node_modules/pusher-js/src/core/connection/callbacks.ts
import HandshakePayload from './handshake/handshake_payload';
import Action from './protocol/action';

export interface ErrorCallbacks {
  tls_only: (result: Action | HandshakePayload) => void;
  refused: (result: Action | HandshakePayload) => void;
  backoff: (result: Action | HandshakePayload) => void;
  retry: (result: Action | HandshakePayload) => void;
}

export interface HandshakeCallbacks {
  connected: (handshake: HandshakePayload) => void;
}

export interface ConnectionCallbacks {
  message: (message: any) => void;
  ping: () => void;
  activity: () => void;
  error: (error: any) => void;
  closed: () => void;
}