Type Alias: VCSReviewComment
Makaio Framework / contracts / VCSReviewComment
Type Alias: VCSReviewComment
Section titled “Type Alias: VCSReviewComment”VCSReviewComment =
z.infer<typeofVCSReviewCommentSchema>
Defined in: ../../../packages/contracts/src/capabilities/vcs/schemas/review.ts:36
Inferred TypeScript type for VCS review comments.
Type Composition
Section titled “Type Composition”VCSReviewCommentz.infer<typeof VCSReviewCommentSchema>typeof VCSReviewCommentSchema
Resolved Shape
Section titled “Resolved Shape”type VCSReviewComment = { id: number; author: string; body: string; path: string | null; line: number | null; createdAt: string; updatedAt: string; inReplyToId: number | null; diffHunk?: string | null | undefined; threadId?: string | null | undefined; isResolved?: boolean | null | undefined;};