@aecworks/bimbox-bimserver-sdk-js
Version:
AECWorks BIMBox 产品线 BIMServer 的 sdk 的 JavaScript 实现,采用Typescript语言
14 lines • 483 B
JavaScript
import { SharePageModel } from '../model/share';
var SharePageProxy = /** @class */ (function () {
function SharePageProxy(responseData) {
this.sharePage = new SharePageModel();
var data = responseData;
Object.assign(this.sharePage, data);
}
SharePageProxy.prototype.getModel = function () {
return this.sharePage;
};
return SharePageProxy;
}());
export { SharePageProxy };
//# sourceMappingURL=share-page-proxy.js.map