UNPKG

webpack-dev-server

Version:

Serves a webpack app. Updates the browser on changes.

13 lines (12 loc) 466 B
/** @typedef {import("../Server.js").ClientConnection} ClientConnection */ export default class BaseServer { /** * @param {import("../Server.js").default} server server */ constructor(server: import("../Server.js").default); /** @type {import("../Server.js").default} */ server: import("../Server.js").default; /** @type {ClientConnection[]} */ clients: ClientConnection[]; } export type ClientConnection = import("../Server.js").ClientConnection;