fix: Adjust response types for twitter auth and endpoints

This commit is contained in:
Faruk AYDIN
2022-08-30 14:26:56 +03:00
parent 29abf702bd
commit fda957b1f6
5 changed files with 15 additions and 6 deletions

View File

@@ -20,6 +20,8 @@ export default class UserTweet {
this.client.step.parameters.username as string
);
return await this.client.getUserTweets.run(user.id, lastInternalId);
const tweets = await this.client.getUserTweets.run(user.id, lastInternalId);
return tweets;
}
}