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 • 423 B
text/typescript
import { DateLike } from "../../../common/types.cjs";
//#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 };