import type { Feed } from "./feed"; import type { FeedLinks } from "./feedLinks"; import type { ResourceWithId } from "./resource"; export interface RetryFeed extends Feed, ResourceWithId { DownloadAttempts: number; DownloadRetryBackoffSeconds: number; }