Files
klz-cables.com/.pnpm-store/v10/files/ed/17047d8f6a07e1421ba9af2a87a0bd0a5172096f9df5687f3b378c4221c4e6b52a6368e43df361c9296766c8756e827bcc2cd97acd966a9cfd88a91677611a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

16 lines
484 B
Plaintext

import { WebSocketInterface } from "../../types/globals.cjs";
//#region src/realtime/utils/message-callback.d.ts
/**
* Wait for a websocket response
*
* @param socket WebSocket
* @param number timeout
*
* @returns Incoming message object
*/
declare const messageCallback: (socket: WebSocketInterface, timeout?: number) => Promise<Record<string, any> | MessageEvent<string> | undefined>;
//#endregion
export { messageCallback };
//# sourceMappingURL=message-callback.d.cts.map