Files
klz-cables.com/.pnpm-store/v10/files/13/f5d3ab36e9fc3651c04d89352478e35a5f9aa66bea839812c6dddd9828250743e72ce1833c6b54db49521ba032f89b7e641f27e0ff82cb0be047b9eee89e47
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
522 B
Plaintext

import { DirectusClient } from "../types/client.cjs";
import { WebSocketClient, WebSocketConfig } from "./types.cjs";
//#region src/realtime/composable.d.ts
/**
* Creates a client to communicate with a Directus REST WebSocket.
*
* @param config The optional configuration.
*
* @returns A Directus realtime client.
*/
declare function realtime(config?: WebSocketConfig): <Schema>(client: DirectusClient<Schema>) => WebSocketClient<Schema>;
//#endregion
export { realtime };
//# sourceMappingURL=composable.d.cts.map