UNPKG

@soketi/soketi-js

Version:

Laravel Echo extension that works with Soketi, a Laravel-ready WebSockets service.

14 lines (12 loc) 311 B
import { NullChannel } from './null-channel'; /** * This class represents a null private channel. */ export class NullPrivateChannel extends NullChannel { /** * Trigger client event on the channel. */ whisper(eventName: string, data: any): NullPrivateChannel { return this; } }