Server : nginx/1.18.0 System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64 User : www-data ( 33) PHP Version : 8.0.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/ecommerce/node_modules/laravel-echo/dist/ |
import { Channel, PresenceChannel } from './channel';
/**
* This class is the primary API for interacting with broadcasting.
*/
export default class Echo {
/**
* The broadcasting connector.
*/
connector: any;
/**
* The Echo options.
*/
options: any;
/**
* Create a new class instance.
*/
constructor(options: any);
/**
* Get a channel instance by name.
*/
channel(channel: string): Channel;
/**
* Create a new connection.
*/
connect(): void;
/**
* Disconnect from the Echo server.
*/
disconnect(): void;
/**
* Get a presence channel instance by name.
*/
join(channel: string): PresenceChannel;
/**
* Leave the given channel, as well as its private and presence variants.
*/
leave(channel: string): void;
/**
* Leave the given channel.
*/
leaveChannel(channel: string): void;
/**
* Listen for an event on a channel instance.
*/
listen(channel: string, event: string, callback: Function): Channel;
/**
* Get a private channel instance by name.
*/
private(channel: string): Channel;
/**
* Get a private encrypted channel instance by name.
*/
encryptedPrivate(channel: string): Channel;
/**
* Get the Socket ID for the connection.
*/
socketId(): string;
/**
* Register 3rd party request interceptiors. These are used to automatically
* send a connections socket id to a Laravel app with a X-Socket-Id header.
*/
registerInterceptors(): void;
/**
* Register a Vue HTTP interceptor to add the X-Socket-ID header.
*/
registerVueRequestInterceptor(): void;
/**
* Register an Axios HTTP interceptor to add the X-Socket-ID header.
*/
registerAxiosRequestInterceptor(): void;
/**
* Register jQuery AjaxPrefilter to add the X-Socket-ID header.
*/
registerjQueryAjaxSetup(): void;
}