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.

20 lines 422 B
import { DateLike } from "../../../common/types.js"; //#region src/namespaces/thr/common/types.d.ts declare namespace ThrNs { type InReplyTo = { ref: string; href?: string; type?: string; source?: string; }; type Link<TDate extends DateLike> = { count?: number; updated?: TDate; }; type Item = { total?: number; inReplyTos?: Array<InReplyTo>; }; } //#endregion export { ThrNs };