import type { DateTimeTzString } from "../types/DateTimeTzString"; import type { IssueAttachmentFile } from "./IssueAttachmentFile"; import type { SharedFile } from "./SharedFile"; import type { Star } from "./Star"; import type { User } from "./User"; import type { WikiTag } from "./WikiTag"; export interface Wiki { readonly id: number; readonly projectId: number; readonly name: string; readonly content: string; readonly tags: WikiTag[]; readonly attachments: IssueAttachmentFile[]; readonly sharedFiles: SharedFile[]; readonly stars: Star[]; readonly createdUser: User; readonly created: DateTimeTzString; readonly updatedUser: User; readonly updated: DateTimeTzString; }