forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
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'