Fix logout

This commit is contained in:
Louis Lam
2023-12-09 17:02:14 +08:00
parent 7a0d4fc62a
commit 16a5f2a175
5 changed files with 86 additions and 6 deletions

View File

@@ -17,6 +17,11 @@ export interface LooseObject {
[key: string]: any
}
export interface BaseRes {
ok: boolean;
msg?: string;
}
let randomBytes : (numBytes: number) => Uint8Array;
initRandomBytes();