domutils
    Preparing search index...

    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;
    }
    Index

    Properties

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