import type { FeedSource } from "@aelis/core" export interface FeedSourceProvider { feedSourceForUser(userId: string): Promise } export type FeedSourceProviderFn = (userId: string) => Promise export type FeedSourceProviderInput = FeedSourceProvider | FeedSourceProviderFn