Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
119
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 27 lines 548 B view raw
1export type LiveEventFeedImageLayout = 'wide' | 'compact' // maybe more in the future 2 3export type LiveEventFeedLayout = { 4 title: string 5 overlayColor: string 6 textColor: string 7 image: string 8 blurhash: string 9} 10 11export type LiveEventFeed = { 12 id: string 13 preview: boolean 14 title: string 15 url: string 16 layouts: Record<LiveEventFeedImageLayout, LiveEventFeedLayout> 17} 18 19export type LiveEventsWorkerResponse = { 20 feeds: LiveEventFeed[] 21} 22 23export type LiveEventFeedMetricContext = 24 | 'explore' 25 | 'discover' 26 | 'sidebar' 27 | 'settings'