Radish alpha
r
rad:z4D5UCArafTzTQpDZNQRuqswh3ury
Radicle desktop app
Radicle
Git
radicle-desktop crates radicle-types bindings cob patch Review.ts
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Author } from "../Author";
import type { CodeLocation } from "../thread/CodeLocation";
import type { Comment } from "../thread/Comment";
import type { Verdict } from "./Verdict";

export type Review = {
  id: string;
  author: Author;
  verdict?: Verdict;
  summary: string;
  comments: Array<Comment<CodeLocation>>;
  timestamp: number;
  labels: Array<string>;
};