import { Observable } from "rxjs"; import { Repo, RepoEntity, RepoSearch, Search } from "./types"; export declare type FeedOpts = Search & IInterval; export declare function feedInterval, TEntity = RepoEntity, TSearch = RepoSearch>(repo: TRepo, opts: FeedOpts): Observable; interface IInterval { /** * The interval size in milliseconds (by default) or the time unit determined by the * scheduler's clock. * * @defaultValue 0 * */ intervalMs?: number; } export {}; //# sourceMappingURL=feed_interval.d.ts.map