mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 17:11:17 +00:00
Rename all references across the codebase: package names, imports, source IDs, directory names, docs, and configs. Co-authored-by: Ona <no-reply@ona.com>
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
import type { FeedSource } from "@aelis/core"
|
|
|
|
export interface FeedSourceProvider {
|
|
feedSourceForUser(userId: string): FeedSource
|
|
}
|
|
|
|
export type FeedSourceProviderFn = (userId: string) => FeedSource
|
|
|
|
export type FeedSourceProviderInput = FeedSourceProvider | FeedSourceProviderFn
|