@univerjs/thread-comment v0.4.2 • Docs
Type Alias: CommentUpdate
type CommentUpdate: {
silent: boolean;
subUnitId: string;
unitId: string;
} &
| {
isRoot: boolean;
payload: IThreadComment;
type: "add";
}
| {
payload: IUpdateCommentPayload;
type: "update";
}
| {
payload: {
comment: IThreadComment;
commentId: string;
isRoot: boolean;
};
type: "delete";
}
| {
payload: IUpdateCommentRefPayload;
threadId: string;
type: "updateRef";
}
| {
payload: {
commentId: string;
resolved: boolean;
};
type: "resolve";
}
| {
payload: IThreadComment;
type: "syncUpdate";
};
Type declaration
Defined in
packages/thread-comment/src/models/thread-comment.model.ts:24 (opens in a new tab)