Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var Something = /** @class */ (function () {
- function Something(v) {
- this.isNothing = false;
- this.v = v;
- }
- Something.myMethod = function () {
- return 1;
- };
- Something.prototype.myOtherMethod = function () {
- return 2;
- };
- Something.isSomething = true;
- return Something;
- }());
Advertisement
Add Comment
Please, Sign In to add comment