Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
client
1import {type AuthorFilter} from '#/state/queries/post-feed'
2
3/**
4 * Kind of like `FeedDescriptor` but not
5 */
6export type VideoFeedSourceContext =
7 | {
8 type: 'feedgen'
9 uri: string
10 sourceInterstitial: 'discover' | 'explore' | 'none'
11 initialPostUri?: string
12 }
13 | {
14 type: 'author'
15 did: string
16 filter: AuthorFilter
17 initialPostUri?: string
18 }