Files
klz-cables.com/.pnpm-store/v10/files/a4/39e1b53bd19cdbeeb45c08b1c3c6ff37b219f7f020c03b4d1a812ada46e63912ea0f916f4314180872bf451db6ccbe6b53498ed18697f2d5ca209f199f873d
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
482 B
Plaintext

import { WebSocketInterface } from "../../types/globals.js";
//#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.ts.map