UNPKG

feedsmith

Version:

Robust and fast parser and generator for RSS, Atom, JSON Feed, and RDF feeds, with support for Podcast, iTunes, Dublin Core, and OPML files.

18 lines (17 loc) 295 B
export type InReplyTo = { ref?: string; href?: string; type?: string; source?: string; }; export type Link = { count?: number; updated?: string; }; export type Item = { total?: number; inReplyTos?: Array<InReplyTo>; }; export type Feed = { total?: number; };