1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Convert src/Login.js to TypeScript

This commit is contained in:
J. Ryan Stinnett
2020-10-06 12:42:28 +01:00
parent 48da4c2abd
commit 11eb9b59e6
2 changed files with 90 additions and 48 deletions

View File

@@ -40,7 +40,7 @@ export interface IMatrixClientCreds {
userId: string;
deviceId: string;
accessToken: string;
guest: boolean;
guest?: boolean;
pickleKey?: string;
freshLogin?: boolean;
}