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

11 lines
319 B
TypeScript

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