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
18 lines
424 B
Plaintext
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 |