Files
klz-cables.com/.pnpm-store/v10/files/52/d10fd50fbd58953bd7299de4b1da4b59a3bb0f87b1bf92a5cefbf38c1bbb45ed57cb4ae57106f97c7d729079ebacaab5cefee2e22bb0e8da3fcf42eb5a804b
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
519 B
Plaintext

import { DirectusClient } from "../types/client.js";
import { WebSocketClient, WebSocketConfig } from "./types.js";
//#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.ts.map