1234567891011121314151617181920212223242526272829303132333435363738394041 |
- var Unibase;
- (function (Unibase) {
- let Platform;
- (function (Platform) {
- let Communications;
- (function (Communications) {
- let Controls;
- (function (Controls) {
- class Template_Setting {
- loadSettingHtml() {
- return ``;
- }
- bindControlData(controldatajson) {
- return "";
- }
- SaveControlData(controldatajson) {
- return "";
- }
- loadControlPropertiesHtml(Container) {
- return ``;
- }
- bindPropertySettings(prop) {
- var propertySettings = prop.PropertySettings;
- return "";
- }
- savePropertySettings(prop) {
- var propertySettings = prop.PropertySettings;
- return "";
- }
- static Instance() {
- if (this.instance === undefined) {
- this.instance = new Template_Setting();
- }
- return this.instance;
- }
- }
- Controls.Template_Setting = Template_Setting;
- })(Controls = Communications.Controls || (Communications.Controls = {}));
- })(Communications = Platform.Communications || (Platform.Communications = {}));
- })(Platform = Unibase.Platform || (Unibase.Platform = {}));
- })(Unibase || (Unibase = {}));
|