Implement trending
This commit is contained in:
parent
486ce26a91
commit
22849fb4fc
6 changed files with 24 additions and 13 deletions
|
@ -28,6 +28,7 @@ export class FeedItemModel implements GetTimeline.FeedItem {
|
|||
declaration: {cid: '', actorType: ''},
|
||||
}
|
||||
repostedBy?: GetTimeline.Actor
|
||||
trendedBy?: GetTimeline.Actor
|
||||
record: Record<string, unknown> = {}
|
||||
embed?:
|
||||
| GetTimeline.RecordEmbed
|
||||
|
@ -55,6 +56,7 @@ export class FeedItemModel implements GetTimeline.FeedItem {
|
|||
this.cid = v.cid
|
||||
this.author = v.author
|
||||
this.repostedBy = v.repostedBy
|
||||
this.trendedBy = v.trendedBy
|
||||
this.record = v.record
|
||||
this.embed = v.embed
|
||||
this.replyCount = v.replyCount
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue