Module
Module Type represents the module configuration. It is a pluggable piece of code in a standalone package. Module can be a subject of interceptors, overrides and extensions.
type Module = {
connector: Connector;
context?: Record<string, any>;
subscribers?: Subscribers;
utils?: Record<string, any>;
};