forked from github/plane
539c7a3455
* refactor: peek overview components * fix: issue reactions * chore: update comment types * fix: access sepcifier value * chore: remove unused vars * fix: build errors * build-error: build error resolved --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com>
37 lines
657 B
TypeScript
37 lines
657 B
TypeScript
import { IUserLite } from "./users";
|
|
|
|
export interface IIssueReaction {
|
|
actor: string;
|
|
actor_detail: IUserLite;
|
|
created_at: Date;
|
|
created_by: string;
|
|
id: string;
|
|
issue: string;
|
|
project: string;
|
|
reaction: string;
|
|
updated_at: Date;
|
|
updated_by: string;
|
|
workspace: string;
|
|
}
|
|
|
|
export interface IssueReactionForm {
|
|
reaction: string;
|
|
}
|
|
|
|
export interface IssueCommentReaction {
|
|
id: string;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
reaction: string;
|
|
created_by: string;
|
|
updated_by: string;
|
|
project: string;
|
|
workspace: string;
|
|
actor: string;
|
|
comment: string;
|
|
}
|
|
|
|
export interface IssueCommentReactionForm {
|
|
reaction: string;
|
|
}
|