mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
34 lines
591 B
TypeScript
34 lines
591 B
TypeScript
|
export interface IssueReaction {
|
||
|
id: string;
|
||
|
created_at: Date;
|
||
|
updated_at: Date;
|
||
|
reaction: string;
|
||
|
created_by: string;
|
||
|
updated_by: string;
|
||
|
project: string;
|
||
|
workspace: string;
|
||
|
actor: string;
|
||
|
issue: 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;
|
||
|
}
|