UNPKG
@logsn/arweave
Version:
latest (1.14.0)
1.14.0
Arweave JS client library
github.com/ArweaveTeam/arweave-js
ArweaveTeam/arweave-js
@logsn/arweave
/
web
/
lib
/
wallet.d.ts
14 lines
(13 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
interface
JWKPublicInterface
{
kty
:
string
;
e
:
string
;
n
:
string
; }
export
interface
JWKInterface
extends
JWKPublicInterface
{
d
?:
string
;
p
?:
string
;
q
?:
string
;
dp
?:
string
;
dq
?:
string
;
qi
?:
string
; }