Interface Timeline

interface Timeline {
    items: readonly TimelineItem[];
    paging?: {
        cursor: undefined | string;
    };
}

Properties

Properties

items: readonly TimelineItem[]

An array of timeline items.

paging?: {
    cursor: undefined | string;
}

Type declaration

  • Readonly cursor: undefined | string

    A provider-defined cursor specifying the starting point of timeline items which are after the ones returned. Use undefined to signal that there are no more items to be returned.