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;
}