UNPKG
btcpay-greenfield-node-client
Version:
latest (1.7.0)
1.7.0
0.1.1
0.1.0
## Installation
AryanJ-NYC/btcpay-greenfield-node-client
btcpay-greenfield-node-client
/
dist
/
core
/
ApiError.d.ts
9 lines
(8 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
ApiResult
}
from
'./ApiResult'
;
export
declare
class
ApiError
extends
Error
{
readonly
url
:
string
;
readonly
status
:
number
;
readonly
statusText
:
string
;
readonly
body
:
any
;
constructor
(
response
:
ApiResult
,
message
:
string
); }