@ably/laravel-echo
Version:
Laravel Echo library for beautiful Ably integration
14 lines (12 loc) • 328 B
text/typescript
import { NullChannel } from './null-channel';
/**
* This class represents a null private channel.
*/
export class NullPrivateChannel extends NullChannel {
/**
* Send a whisper event to other clients in the channel.
*/
whisper(eventName: string, data: any): NullPrivateChannel {
return this;
}
}