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 7e794f1 commit 82a0218Copy full SHA for 82a0218
src/client/Qiita.ts
@@ -31,7 +31,7 @@ export class Qiita extends Gateway {
31
32
while (next) {
33
const response = await this.get<T>(next);
34
- const result = yield response.data as T | 'reset';
+ const result: T | 'reset' = yield response.data;
35
36
if (result === 'reset') {
37
next = initialUrl;
0 commit comments