Files
klz-cables.com/.pnpm-store/v10/files/89/f189136f343d130d1edfad57ef37038b42e0d607376437c13ea721a93df259df54c486a9f73f029a8d9a578db34566273a222dfb5b0b15e04c8841aa14ff97
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
425 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.cts.map