UNPKG
@machinemode/cryptopia
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Node wrapper for Cryptopia's CLient API
github.com/machinemode/cryptopia
machinemode/cryptopia
@machinemode/cryptopia
/
lib
/
http
/
Response.d.ts
10 lines
(9 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
declare
abstract
class
Response
{
private
statusCode;
private
responseBody;
constructor
(
statusCode
:
number
,
responseBody
:
string
);
readonly
body
:
string
;
readonly
ok
:
boolean
;
readonly
status
:
number
; }
export
default
Response
;