UNPKG

398 BJavaScriptView Raw
1"use strict";
2var ComponentStore = {
3 store: new Map(),
4 register: function (componentType) {
5 this.store.set(componentType.$getTypeName(), componentType);
6 },
7 get: function (typeName) {
8 return this.store.get(typeName);
9 }
10};
11Object.defineProperty(exports, "__esModule", { value: true });
12exports.default = ComponentStore;
13
14//# sourceMappingURL=ComponentStore.js.map