ts-cards
Version:
Cards but in typescript
18 lines (17 loc) • 426 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Suit = void 0;
var Suit = /** @class */ (function () {
function Suit(name) {
this._name = name;
}
Object.defineProperty(Suit.prototype, "name", {
get: function () {
return this._name;
},
enumerable: false,
configurable: true
});
return Suit;
}());
exports.Suit = Suit;