UNPKG

ts-cards

Version:
18 lines (17 loc) 426 B
"use strict"; 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;