Files
klz-cables.com/.pnpm-store/v10/files/a2/02205708253e0e6012523061c4f009dcb3663a74fd695e3e7319de67ca79173fa8a7a0656bd7cb1f2ffe256a533162059f1e26d97206ab12ed5603a20fb6c2
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

14 lines
441 B
Plaintext

import { DirectusClient } from "../types/client.js";
import { RestClient, RestConfig } from "./types.js";
//#region src/rest/composable.d.ts
/**
* Creates a client to communicate with the Directus REST API.
*
* @returns A Directus REST client.
*/
declare const rest: (config?: Partial<RestConfig>) => <Schema>(client: DirectusClient<Schema>) => RestClient<Schema>;
//#endregion
export { rest };
//# sourceMappingURL=composable.d.ts.map