Type Alias: VCSReview
Makaio Framework / contracts / VCSReview
Type Alias: VCSReview
Section titled “Type Alias: VCSReview”VCSReview =
z.infer<typeofVCSReviewSchema>
Defined in: ../../../packages/contracts/src/capabilities/vcs/schemas/pr.ts:96
Type Composition
Section titled “Type Composition”VCSReviewz.infer<typeof VCSReviewSchema>typeof VCSReviewSchema
Resolved Shape
Section titled “Resolved Shape”type VCSReview = { id: number; author: string; state: 'APPROVED' | 'CHANGES_REQUESTED' | 'COMMENTED' | 'PENDING' | 'DISMISSED'; body: string | null; submittedAt: string | null;};