We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edb0be0 commit b9eafafCopy full SHA for b9eafaf
package.json
@@ -5,7 +5,7 @@
5
"main": "lib/index.js",
6
"scripts": {
7
"prepublish": "rollup -c & yarn tsc",
8
- "type-check": "tsc --noEmit"
+ "type-check": "tsc"
9
},
10
"repository": "https://github.com/avorty/vulcan-api-js.git",
11
"homepage": "https://avorty.github.io/vulcan-api-js",
src/api.ts
@@ -96,7 +96,7 @@ export class Api {
96
}
97
try {
98
const rawRes = await fetch(fullUrl, options);
99
- const jsonRes = await rawRes.json();
+ const jsonRes: any = await rawRes.json();
100
const status = jsonRes["Status"];
101
const envelope = jsonRes["Envelope"];
102
if (status.Code !== 0) {
0 commit comments