all files / document-editor/base/ events-helper.js

100% Statements 9/9
100% Branches 0/0
100% Functions 3/3
100% Lines 9/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14   24× 24× 24×        
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var Comment = (function () {
        function Comment(id, commentProperties, text) {
            this.id = id;
            this.commentProperties = commentProperties;
            this.text = text;
        }
        return Comment;
    }());
    exports.Comment = Comment;
});