mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import {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 }