UNPKG

@syncfusion/ej2-documenteditor

Version:

Feature-rich document editor control with built-in support for context menu, options pane and dialogs.

13 lines (12 loc) 280 B
/** * Represents a comment. */ var Comment = /** @class */ (function () { function Comment(id, commentProperties, text) { this.id = id; this.commentProperties = commentProperties; this.text = text; } return Comment; }()); export { Comment };