15 lines
356 B
JavaScript
15 lines
356 B
JavaScript
var ItemDictionary = (function () {
|
|
function ItemDictionary() {
|
|
}
|
|
ItemDictionary.prototype.Get = function (key) {
|
|
return this[key];
|
|
};
|
|
ItemDictionary.prototype.Add = function (key, value) {
|
|
this[key] = value;
|
|
};
|
|
return ItemDictionary;
|
|
}());
|
|
export { ItemDictionary };
|
|
|
|
//# sourceMappingURL=ItemDictionary.js.map
|