Files
klz-cables.com/.pnpm-store/v10/files/2f/86683b40343cbd65ea1725f1749bdfaa3ac6e6729b66f36af4a43901d62e2185660cfc69638433bc27c0216facdb0176022f65de663bc4e24c3c5600deb861
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

17 lines
628 B
Plaintext

import { DirectusClient } from "../types/client.js";
import { AuthenticationClient, AuthenticationConfig, AuthenticationMode } from "./types.js";
//#region src/auth/composable.d.ts
/**
* Creates a client to authenticate with Directus.
*
* @param mode AuthenticationMode
* @param config The optional configuration.
*
* @returns A Directus authentication client.
*/
declare const authentication: (mode?: AuthenticationMode, config?: Partial<AuthenticationConfig>) => <Schema>(client: DirectusClient<Schema>) => AuthenticationClient<Schema>;
//#endregion
export { authentication };
//# sourceMappingURL=composable.d.ts.map