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