UNPKG
@othent/kms-unbundled
Version:
latest (1.0.5)
1.0.5
1.0.2
1.0.1
Arweave Oauth Othent wallets enabled Google Key Management Service.
othent.io
Othent/KMS-JS-new
@othent/kms-unbundled
/
src
/
lib
/
mapping
/
disconnect.ts
11 lines
(9 loc)
•
246 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ logOut }
from
"../auth/logOut"
;
/** * Disconnect the users wallet. This will require the user to log back in after called. *
@returns
Nothing. */
export
async
function
disconnect
(
):
Promise
<
null
> {
await
logOut
();
return
null
; }