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 • 451 B
TypeScript
import { DateLike, DeepPartial, XmlGenerateOptions } from "../../common/types.js";
import { MainOptions, Opml } from "../common/types.js";
//#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 };