interface NewsItem {
    _id: string;
    data: NewsData;
    stream: string;
    ts: string;
    type: string;
}

Properties

Properties

_id: string

The item's internal ID.

data: NewsData

The item's records.

stream: string

The item's stream.

ts: string

The item's creation date.

type: string

The item's type.