import type { DateTimeTzString } from "../types/DateTimeTzString"; import type { URlString } from "../types/URlString"; import type { User } from "./User"; export interface Star { readonly id: number; readonly comment?: string; readonly url: URlString; readonly title: string; readonly presenter: User; readonly created: DateTimeTzString; }