@aecworks/bimbox-bimserver-sdk-js
Version:
AECWorks BIMBox 产品线 BIMServer 的 sdk 的 JavaScript 实现,采用Typescript语言
55 lines • 1.95 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { ListModel, PageModel } from './common';
var CommentModel = /** @class */ (function () {
function CommentModel() {
}
return CommentModel;
}());
var CommentReplyModel = /** @class */ (function () {
function CommentReplyModel() {
}
return CommentReplyModel;
}());
var CommentContentModel = /** @class */ (function () {
function CommentContentModel() {
}
return CommentContentModel;
}());
var AttachmentModel = /** @class */ (function () {
function AttachmentModel() {
}
return AttachmentModel;
}());
var MentionsModel = /** @class */ (function () {
function MentionsModel() {
}
return MentionsModel;
}());
var CommentListModel = /** @class */ (function (_super) {
__extends(CommentListModel, _super);
function CommentListModel() {
return _super !== null && _super.apply(this, arguments) || this;
}
return CommentListModel;
}(ListModel));
var CommentPageModel = /** @class */ (function (_super) {
__extends(CommentPageModel, _super);
function CommentPageModel() {
return _super !== null && _super.apply(this, arguments) || this;
}
return CommentPageModel;
}(PageModel));
export { CommentModel, CommentReplyModel, AttachmentModel, MentionsModel, CommentPageModel };
//# sourceMappingURL=comment.js.map