/
asias
/
new
Обзор
Документация
Войти
/
asias
/
new
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/webpack-dev-server/lib/servers/BaseServer.js
18 строк
428 B
AnastasyaDemina
project
07 дек 2025, 23:03
07 дек 2025, 23:03
7c21e25
Код
Авторство
О чём код?
"use strict"; /** @typedef {import("../Server").ClientConnection} ClientConnection */ // base class that users should extend if they are making their own // server implementation module.exports = class BaseServer { /** * @param {import("../Server")} server */ constructor(server) { /** @type {import("../Server")} */ this.server = server; /** @type {ClientConnection[]} */ this.clients = []; } };