ispt4.0_laravel/node_modules/laravel-echo/dist/channel/null-private-channel.d.ts
2024-04-17 11:58:01 +01:00

11 lines
307 B
TypeScript

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