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

11 lines
337 B
TypeScript
Executable File

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