UNPKG
node-easysms
Version:
latest (1.3.2)
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
EasySMS is an SMS sender for Node.js
github.com/hpyer/node-easysms
hpyer/node-easysms
node-easysms
/
dist
/
Core
/
Exceptions
/
GatewayErrorException.d.ts
13 lines
(12 loc)
•
310 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
declare
class
GatewayErrorException
implements
Exception
{
name
:
string
;
message
:
string
;
stack
?:
string
;
raw
:
Record
<
string
,
any
>;
constructor
(
message
:
string
,
raw
:
Record
<
string
,
any
>
);
/** * 获取发送结果 *
@returns
*/
getRaw
():
Record
<
string
,
any
>; }