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.

14 lines 258 B
//#region src/namespaces/psc/common/types.d.ts declare namespace PscNs { type Chapter = { start: string; title: string; href?: string; image?: string; }; type Item = { chapters?: Array<Chapter>; }; } //#endregion export { PscNs };