UNPKG

feedsmith

Version:

Fast, all‑in‑one feed parser and generator for RSS, Atom, RDF, and JSON Feed, with support for Podcast, iTunes, Dublin Core, and OPML files.

6 lines 279 B
import { DeepPartial, ParseOptions } from "../../../common/types.js"; import { Rss } from "../common/types.js"; //#region src/feeds/rss/parse/index.d.ts declare const parse: (value: unknown, options?: ParseOptions) => DeepPartial<Rss.Feed<string>>; //#endregion export { parse };