UNPKG
transact-payments
Version:
latest (1.6.0)
1.6.0
1.5.0
1.4.0
1.3.0
1.2.1
1.2.0
1.1.0
1.0.0
Node module to do payments using transact.io
gitlab.com/transact/node-transact
transact-payments
/
dist
/
lib
/
TransactIoError.d.ts
8 lines
(7 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
TransactIoErrorCode
}
from
'./TransactIoErrorCode'
;
export
declare
class
TransactIoError
extends
Error
{
message
:
string
;
code
:
TransactIoErrorCode
;
err
:
any
;
constructor
(
msg
:
string
,
code
:
TransactIoErrorCode
,
err
:
any
); }