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 • 345 B
text/typescript
import { DeepPartial } from "../../common/types.cjs";
import { MainOptions, Opml } from "../common/types.cjs";
//#region src/opml/parse/index.d.ts
declare const parse: <const A extends ReadonlyArray<string> = ReadonlyArray<string>>(value: string, options?: MainOptions<A>) => DeepPartial<Opml.Document<string, A>>;
//#endregion
export { parse };