Files
Megamenu/lib/services/ItemDictionary.js
Torsten Brendgen bc1258ae76 Initial commit
2026-04-13 10:26:01 +02:00

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