File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ export class Post implements AppBskyFeedDefs.PostView {
44
44
) {
45
45
Object . assign ( this , payload ) ;
46
46
this . author = new BasicActorProfile ( this . client , payload . author ) ;
47
+ this . cid = '' ; // TODO: temporary type fix
48
+ this . uri = '' ; // TODO: temporary type fix
49
+ this . indexedAt = '' ; // TODO: temporary type fix
47
50
}
48
51
49
52
isOfCurrentUser ( ) {
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ class Starterpack {
24
24
) {
25
25
Object . assign ( this , payload ) ;
26
26
this . creator = new BasicActorProfile ( this . client , payload . creator ) ;
27
+ this . cid = '' ; // TODO: temporary type fix
28
+ this . uri = '' ; // TODO: temporary type fix
29
+ this . indexedAt = '' ; // TODO: temporary type fix
27
30
}
28
31
}
29
32
You can’t perform that action at this time.
0 commit comments