The RSS channel containing feed metadata and items

Export

RssChannel

interface RssChannel {
    description: string;
    items?: RssItem[];
    nextLink?: AtomLink;
    title: string;
}

Properties

description: string

Description of the RSS channel

Memberof

RssChannel

items?: RssItem[]

List of RSS items in the channel

Memberof

RssChannel

nextLink?: AtomLink

Memberof

RssChannel

title: string

Title of the RSS channel

Memberof

RssChannel