mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
|
|
import type { FeedSource } from "@aris/core"
|
||
|
|
|
||
|
|
export interface FeedSourceProvider {
|
||
|
|
feedSourceForUser(userId: string): FeedSource
|
||
|
|
}
|
||
|
|
|
||
|
|
export type FeedSourceProviderFn = (userId: string) => FeedSource
|
||
|
|
|
||
|
|
export type FeedSourceProviderInput = FeedSourceProvider | FeedSourceProviderFn
|