Files
klz-cables.com/.pnpm-store/v10/files/da/290facd92643e0c831697eac216af177732a00f626e4e46801b3fd3428ea444d25d224ecefc4ebe788d9efcd53422826bdbc6ce1a75393661ffafdc09f6ab7
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
444 B
Plaintext

import { DirectusClient } from "../types/client.cjs";
import { RestClient, RestConfig } from "./types.cjs";
//#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.cts.map