MikeRohsoft

Untitled

Apr 17th, 2022
1,283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var Something = /** @class */ (function () {
  2.     function Something(v) {
  3.         this.isNothing = false;
  4.         this.v = v;
  5.     }
  6.     Something.myMethod = function () {
  7.         return 1;
  8.     };
  9.     Something.prototype.myOtherMethod = function () {
  10.         return 2;
  11.     };
  12.     Something.isSomething = true;
  13.     return Something;
  14. }());
  15.  
Advertisement
Add Comment
Please, Sign In to add comment