1
0

fix: megalodon reblogged and favourited user info, add createdAt to note

This commit is contained in:
Mar0xy
2023-09-25 03:55:21 +02:00
parent 74213ba2b9
commit a7778e6425
5 changed files with 11 additions and 9 deletions
+2 -2
View File
@@ -734,14 +734,14 @@ export interface MegalodonInterface {
* @param id The target status id.
* @return Array of accounts.
*/
getStatusRebloggedBy(id: string): Promise<Response<Array<Entity.Account>>>
getStatusRebloggedBy(id: string, host?: string): Promise<Response<Array<Entity.Account>>>
/**
* See who favourited a status
*
* @param id The target status id.
* @return Array of accounts.
*/
getStatusFavouritedBy(id: string): Promise<Response<Array<Entity.Account>>>
getStatusFavouritedBy(id: string, host?: string): Promise<Response<Array<Entity.Account>>>
/**
* Favourite a status.
*