Streaming: Fix incorrect type definitions (#30977)

main
Emelia Smith 2024-07-10 17:59:18 +02:00 committed by GitHub
parent 2ea9336b68
commit d436696f46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -1107,7 +1107,7 @@ const startServer = async () => {
/**
* @param {http.IncomingMessage} req
* @param {WebSocket} ws
* @param {import('ws').WebSocket} ws
* @param {string[]} streamName
* @returns {function(string, string): void}
*/
@ -1324,7 +1324,7 @@ const startServer = async () => {
/**
* @typedef WebSocketSession
* @property {WebSocket & { isAlive: boolean}} websocket
* @property {import('ws').WebSocket & { isAlive: boolean}} websocket
* @property {http.IncomingMessage & ResolvedAccount} request
* @property {import('pino').Logger} logger
* @property {Object.<string, { channelName: string, listener: SubscriptionListener, stopHeartbeat: function(): void }>} subscriptions
@ -1450,7 +1450,7 @@ const startServer = async () => {
};
/**
* @param {WebSocket & { isAlive: boolean }} ws
* @param {import('ws').WebSocket & { isAlive: boolean }} ws
* @param {http.IncomingMessage & ResolvedAccount} req
* @param {import('pino').Logger} log
*/