Files
klz-cables.com/.pnpm-store/v10/files/0f/c4d54962d43b5ea162896db293dd75a0928e371f6a6b387c128c1e2540d1d8aff7ce6d74d46a9f77cb2e376eed0b7777df19c89d12d9e299621d238c2dbab2
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

18 lines
424 B
Plaintext

//#region src/realtime/commands/auth.d.ts
interface EmailAuth {
email: string;
password: string;
uid?: string;
}
interface TokenAuth {
access_token: string;
uid?: string;
}
interface RefreshAuth {
refresh_token: string;
uid?: string;
}
declare function auth(creds: EmailAuth | TokenAuth | RefreshAuth): string;
//#endregion
export { EmailAuth, RefreshAuth, TokenAuth, auth };
//# sourceMappingURL=auth.d.ts.map