interface BaseEntry {
    id: string;
    published: string;
    updated: string;
    title: string;
    link: RawEntryLink[];
    author: Author[];
}

Hierarchy (view full)

Properties

id: string

The id of the entry.

published: string

RFC 3339 date-time when the entry was published.

updated: string

RFC 3339 date-time when the entry was last updated.

title: string

The title of the entry.

link: RawEntryLink[]

The links of the entry.

author: Author[]

The authors who published or updated the entry.