gap-nodejs-sdk 1.0.16 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ResponseDataApi } from "src/base_type";
|
|
2
2
|
import * as InputDataType from "../types";
|
|
3
3
|
export default abstract class Call {
|
|
4
|
-
static sendSms: (data: InputDataType.
|
|
4
|
+
static sendSms: (data: InputDataType.SendSms) => Promise<ResponseDataApi>;
|
|
5
5
|
}
|
|
6
6
|
//# sourceMappingURL=call.d.ts.map
|
|
@@ -2,6 +2,6 @@ import CallAbstractClass from "../../interface/call";
|
|
|
2
2
|
import Base from "../../../base/Base";
|
|
3
3
|
import * as InputDataType from "../../types";
|
|
4
4
|
export default class Call extends Base implements CallAbstractClass {
|
|
5
|
-
static sendSms(data: InputDataType.
|
|
5
|
+
static sendSms(data: InputDataType.SendSms): Promise<any>;
|
|
6
6
|
}
|
|
7
7
|
//# sourceMappingURL=call.d.ts.map
|