Update from upstream (#271)

* Fix

* Fix

* Fix logout

* Fix logout

* Fix

* WIP
This commit is contained in:
Louis Lam
2023-12-10 21:16:23 +08:00
committed by GitHub
parent 587d2dcaca
commit 07c52ccebb
5 changed files with 137 additions and 4 deletions

View File

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