import type { DateTimeTzString } from "../types/DateTimeTzString"; import type { IssueCommentChangeLog } from "./IssueCommentChangeLog"; import type { IssueCommentNotification } from "./IssueCommentNotification"; import type { Star } from "./Star"; import type { User } from "./User"; export interface IssueComment { readonly id: number; readonly projectId: number; readonly issueId: number; readonly content: string | null; readonly changeLog: IssueCommentChangeLog[]; readonly createdUser: User; readonly created: DateTimeTzString; readonly updated: DateTimeTzString; readonly stars: Star[]; readonly notifications: IssueCommentNotification[]; }