Skip to content

Type Alias: ReviewIssueComment

Makaio Framework


Makaio Framework / contracts / ReviewIssueComment

ReviewIssueComment = z.infer<typeof ReviewIssueCommentSchema>

Defined in: ../../../packages/contracts/src/capabilities/review/schemas.ts:135

  • ReviewIssueComment
    • z.infer<typeof ReviewIssueCommentSchema>
      • typeof ReviewIssueCommentSchema
type ReviewIssueComment = {
id: string | number;
author: string;
body: string;
url: string | null;
createdAt: string | null;
updatedAt: string | null;
};