UNPKG

234 BTypeScriptView Raw
1import { Component } from "./Component";
2declare const ComponentStore: {
3 store: Map<string, typeof Component>;
4 register(componentType: typeof Component): void;
5 get(typeName: string): any;
6};
7export default ComponentStore;