Comment mutation paired with its assigned server version.
- Package
@sheetwrite/core
- Source
packages/core/src/collaboration.ts#L424
Members 3
Declaration
View full TypeScript declaration
export interface VersionedCommentEvent {
thread: CommentThreadinterface CommentThread {
id: string;
documentId: string;
anchor: CommentAnchor;
version: number;
messages: readonly CommentMessage[];
resolved: boolean;
resolvedBy?: CommentAuthorRef;
resolvedAt?: string;
}interface CommentThread {
id: string;
documentId: string;
anchor: CommentAnchor;
version: number;
messages: readonly CommentMessage[];
resolved: boolean;
resolvedBy?: CommentAuthorRef;
resolvedAt?: string;
}interface CommentThread {
id: string;
documentId: string;
anchor: CommentAnchor;
version: number;
messages: readonly CommentMessage[];
resolved: boolean;
resolvedBy?: CommentAuthorRef;
resolvedAt?: string;
}Versioned discussion anchored to a document location.API reference →; clientMutationId?: string;