-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclasses.js
More file actions
41 lines (41 loc) · 1.13 KB
/
Copy pathclasses.js
File metadata and controls
41 lines (41 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
;
var InvestmentAccount0 = /** @class */ (function () {
function InvestmentAccount0() {
}
InvestmentAccount0.prototype.withdraw = function () {
};
return InvestmentAccount0;
}());
var InvestmentAccount1 = /** @class */ (function () {
function InvestmentAccount1(name, balance) {
this.name = name;
this.balance = balance;
}
InvestmentAccount1.prototype.withdraw = function () {
};
return InvestmentAccount1;
}());
var InvestmentAccount2 = /** @class */ (function () {
function InvestmentAccount2() {
}
InvestmentAccount2.prototype.withdraw = function () {
};
return InvestmentAccount2;
}());
var InvestmentAccount3 = /** @class */ (function () {
function InvestmentAccount3() {
}
InvestmentAccount3.prototype.withdraw = function () {
};
return InvestmentAccount3;
}());
var InvestmentAccount4 = /** @class */ (function () {
function InvestmentAccount4(name, balance) {
this.name = name;
this.balance = balance;
}
InvestmentAccount4.prototype.withdraw = function () {
this.balance = 0;
};
return InvestmentAccount4;
}());