@signalapp/mock-server
Version:
Mock Signal Server for writing tests
16 lines (15 loc) • 373 B
JavaScript
;
// Copyright 2026 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
Object.defineProperty(exports, "__esModule", { value: true });
exports.CallData = void 0;
class CallData {
#roomId;
constructor(options) {
this.#roomId = options.roomId;
}
get roomId() {
return this.#roomId;
}
}
exports.CallData = CallData;