Thread viewer for Bluesky
at master 14 lines 408 B view raw
1interface Window { 2 root: AnyPost; 3 subtreeRoot: AnyPost; 4 _paq?: any[][]; 5} 6 7type json = Record<string, any>; 8 9type AnyPost = import("./models/posts.js").Post 10 | import("./models/posts.js").BlockedPost 11 | import("./models/posts.js").MissingPost 12 | import("./models/posts.js").DetachedQuotePost; 13 14type PostPlacement = 'thread' | 'parent' | 'quote' | 'quotes' | 'feed';