UNPKG
@openweb3-io/waas
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
WaaS API client and WaaS verification library
github.com/waas/waas-libs
waas/waas-libs
@openweb3-io/waas
/
dist
/
src
/
openapi
/
apis
/
exception.d.ts
11 lines
(10 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
class
ApiException
<T>
extends
Error
{
code
:
number
;
body
: T;
headers
: { [
key
:
string
]:
string
; };
constructor
(
code
:
number
,
message
:
string
,
body
: T,
headers
: { [key:
string
]:
string
; }
); }