UNPKG
@crypdex/hydro-sdk
Version:
latest (1.0.10)
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Javascript SDK for the Hydro API
github.com/HydroProtocol/sdk
HydroProtocol/sdk
@crypdex/hydro-sdk
/
build
/
types.d.ts
4 lines
(3 loc)
•
239 B
TypeScript
View Raw
1
2
3
4
export
declare
type
SignatureHandlerSync
=
(
message
:
string
) =>
string
;
export
declare
type
SignatureHandlerAsync
=
(
message
:
string
) =>
Promise
<
string
>;
export
declare
type
SignatureHandler
=
SignatureHandlerSync
|
SignatureHandlerAsync
;