interface Star {
    comment?: string;
    created: string;
    id: number;
    presenter: User;
    title: string;
    url: string;
}

Properties

comment?: string
created: string
id: number
presenter: User
title: string
url: string