Files
klz-cables.com/.pnpm-store/v10/files/42/7c4573ce0d5404ff5829db23cb356f77495ee5f7779439992031a211c2ca00bd0d6c51babcbd66a18657d9f1b6291a7b79fa91f9cbeefdaa585aae6581bd03
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
495 B
Plaintext

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