// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. /** * A feed resolved from a page URL: the concrete feed URL to poll, plus its title. */ export type DiscoveredFeed = { /** * The concrete RSS/Atom URL the worker should poll. */ feed_url: string, /** * The feed's own title, when the parsed feed advertises one. */ title: string | null, };