Thread viewer for Bluesky
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';