Interface Feed

The root of a feed.

interface Feed {
    author?: string;
    description?: string;
    id?: string;
    items: FeedItem[];
    link?: string;
    title?: string;
    type: string;
    updated?: Date;
}

Properties

author?: string
description?: string
id?: string
items: FeedItem[]
link?: string
title?: string
type: string
updated?: Date