Skip to content

Atom Namespace Reference

The Atom namespace allows RSS and RDF feeds to include Atom-specific elements, providing richer metadata and linking capabilities. This namespace provides partial Atom elements that can be embedded within other feed formats.

Namespace URIhttp://www.w3.org/2005/Atom
SpecificationRFC 4287 - Atom Syndication Format
Prefix<atom:*>
Available inRSS, RDF
Propertyatom

Types

INFO

For details on type parameters (TDate, TStrict) and Requirable<T> markers, see TypeScript Reference.

ts
export namespace AtomNs {
  export type Entry<TDate> = DeepOmit<AtomFeed.Entry<TDate>, NsKeys>

  export type Feed<TDate> = DeepOmit<AtomFeed.Feed<TDate>, NsKeys>
}