We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17d3e8a commit ead0e8bCopy full SHA for ead0e8b
build-artifacts/project-template-gradle/src/main/assets/internal/ts_helpers.js
@@ -90,6 +90,7 @@
90
91
__extends_ts(Child, Parent);
92
93
+
94
if (Parent.extend) {
95
Child.__isPrototypeImplementationObject = true;
96
Child.__proto__ = Parent;
@@ -105,9 +106,19 @@
105
106
return extended;
107
};
108
}
109
110
+ function Interfaces(interfacesArr) {
111
+ return function (target) {
112
+ if(interfacesArr instanceof Array) {
113
+ // attach interfaces: [] to the object
114
+ target.prototype.interfaces = interfacesArr;
115
+ }
116
117
118
119
global.__native = __native;
120
global.__extends = __extends;
121
global.__decorate = __decorate;
122
global.JavaProxy = JavaProxy;
123
+ global.Interfaces = Interfaces;
124
})()
0 commit comments