import type { FetchInput, FetchResult } from './feed.types.js'; export interface IFetcher { fetch(input: FetchInput): Promise; fetchMany(inputs: FetchInput[]): Promise; }