Interface IRegisterMap

Represents an object that is used to register multiple components at once. The object keys become component names and the values become component functions.

interface IRegisterMap {
    [key: string | number]: IComponent;
}

Indexable

[key: string | number]: IComponent