DIR: /proc/thread-self/cwd/node_modules/laravel-echo/src/channel/ |
Current File : //proc/thread-self/cwd/node_modules/laravel-echo/src/channel/pusher-encrypted-private-channel.ts |
import { PusherChannel } from './pusher-channel'; /** * This class represents a Pusher private channel. */ export class PusherEncryptedPrivateChannel extends PusherChannel { /** * Send a whisper event to other clients in the channel. */ whisper(eventName: string, data: any): PusherEncryptedPrivateChannel { this.pusher.channels.channels[this.name].trigger(`client-${eventName}`, data); return this; } } |