ispt4.0_laravel/node_modules/laravel-echo/dist/channel/socketio-private-channel.d.ts
2025-03-12 12:02:15 +00:00

11 lines
325 B
TypeScript
Executable File

import { SocketIoChannel } from './socketio-channel';
/**
* This class represents a Socket.io private channel.
*/
export declare class SocketIoPrivateChannel extends SocketIoChannel {
/**
* Send a whisper event to other clients in the channel.
*/
whisper(eventName: string, data: any): SocketIoChannel;
}