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.
19 lines • 378 B
TypeScript
//#region src/namespaces/arxiv/common/types.d.ts
declare namespace ArxivNs {
type PrimaryCategory = {
term?: string;
scheme?: string;
label?: string;
};
type Author = {
affiliation?: string;
};
type Entry = {
comment?: string;
journalRef?: string;
doi?: string;
primaryCategory?: PrimaryCategory;
};
}
//#endregion
export { ArxivNs };