123456789101112131415161718192021222324 |
- var Unibase;
- (function (Unibase) {
- let Platform;
- (function (Platform) {
- let Integrations;
- (function (Integrations) {
- let Components;
- (function (Components) {
- class Integration_Template {
- loadTemplate() {
- let html = `<option value="{{Id}}">{{Name}}</option>`;
- return html;
- }
- static Instance() {
- if (this._instance === undefined)
- this._instance = new Integration_Template();
- return this._instance;
- }
- }
- Components.Integration_Template = Integration_Template;
- })(Components = Integrations.Components || (Integrations.Components = {}));
- })(Integrations = Platform.Integrations || (Platform.Integrations = {}));
- })(Platform = Unibase.Platform || (Unibase.Platform = {}));
- })(Unibase || (Unibase = {}));
|