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 453 B
import { DateLike, DeepPartial, XmlGenerateOptions } from "../../common/types.cjs"; import { MainOptions, Opml } from "../common/types.cjs"; //#region src/opml/generate/index.d.ts declare const generate: <A extends ReadonlyArray<string> = [], F extends boolean = false>(value: F extends true ? DeepPartial<Opml.Document<DateLike, A>> : Opml.Document<Date, A>, options?: XmlGenerateOptions<MainOptions<A>, F>) => string; //#endregion export { generate };