We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b471067 commit 6dff2f9Copy full SHA for 6dff2f9
lib/twiml/TwiML.ts
@@ -7,6 +7,7 @@ import builder from "xmlbuilder";
7
/* jshint ignore:end */
8
9
export default class TwiML {
10
+ [key: string]: any;
11
response: any;
12
_propertyName: string;
13
@@ -35,7 +36,6 @@ export default class TwiML {
35
36
*/
37
38
_getXml() {
- // @ts-ignore
39
return this[this._propertyName];
40
}
41
package.json
@@ -52,7 +52,7 @@
52
"typedoc": "^0.23.21"
53
},
54
"scripts": {
55
- "test": "npm run test:javascript",
+ "test": "npm run test:javascript && npm run test:typescript",
56
"test:javascript": "jest spec/* --coverage --detectOpenHandles",
57
"test:typescript": "tsc --noEmit",
58
"jshint": "jshint lib/rest/** lib/base/** lib/http/**",
0 commit comments