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 282 B
import { DeepPartial, ParseOptions } from "../../../common/types.js"; import { Atom } from "../common/types.js"; //#region src/feeds/atom/parse/index.d.ts declare const parse: (value: unknown, options?: ParseOptions) => DeepPartial<Atom.Feed<string>>; //#endregion export { parse };