Files
klz-cables.com/.pnpm-store/v10/files/de/9265219cb10458bdc6966d061c1f52d8baf1639b997c01b49810f5a988ae50e2ae348fb5afd7540a417db6954d342907c47e8222b9438e7e9e3623a306e832
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
492 B
Plaintext

import { DirectusClient } from "../types/client.js";
import { StaticTokenClient } from "./types.js";
//#region src/auth/static.d.ts
/**
* Creates a client to authenticate with Directus using a static token.
*
* @param token static token.
*
* @returns A Directus static token client.
*/
declare const staticToken: (access_token: string) => <Schema>(_client: DirectusClient<Schema>) => StaticTokenClient<Schema>;
//#endregion
export { staticToken };
//# sourceMappingURL=static.d.ts.map