UNPKG

406 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.ClientsContainer = void 0;
4class ClientsContainer {
5 constructor() {
6 this.clients = [];
7 }
8 getAllClients() {
9 return this.clients;
10 }
11 addClient(client) {
12 this.clients.push(client);
13 }
14 clear() {
15 this.clients = [];
16 }
17}
18exports.ClientsContainer = ClientsContainer;