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

Properties

Properties

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

Type declaration

  • Readonly cursor: undefined | string
source: string