UNPKG

@soketi/soketi-js

Version:

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

20 lines (19 loc) 489 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NullPresenceChannel = void 0; const null_channel_1 = require("./null-channel"); class NullPresenceChannel extends null_channel_1.NullChannel { here(callback) { return this; } joining(callback) { return this; } leaving(callback) { return this; } whisper(eventName, data) { return this; } } exports.NullPresenceChannel = NullPresenceChannel;