/
iliyagladkov
/
to-do-react
Обзор
Документация
Войти
/
iliyagladkov
/
to-do-react
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/webpack-dev-server/lib/servers/BaseServer.js
18 строк
428 B
Iliya
Final
18 фев 2023, 15:04
18 фев 2023, 15:04
fae6815
Код
Авторство
О чём код?
"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 = []; } };