UNPKG

gamelet-pixui-frame

Version:

pixui开发者框架

29 lines 824 B
"use strict"; /** * ------------------------------------------------------- * 三方组件示例,请组件开发者填写以下内容 * 组件名称: * 组件功能: * 联系人: * 版本: * ------------------------------------------------------- */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ThirdParty = void 0; var utilities_1 = require("../framework/utilities/utilities"); var ThirdPartyImpl = /** @class */ (function () { function ThirdPartyImpl() { } /** * 方法请做好注释 */ ThirdPartyImpl.prototype.method = function () { console.log("ThirdPartyImpl method"); }; return ThirdPartyImpl; }()); /** * 单例化 */ exports.ThirdParty = (0, utilities_1.singleton)(ThirdPartyImpl).getInstance(); //# sourceMappingURL=thirdparyt.js.map