Function getContainerConfig

  • Returns the configuration of a registered container

    If container is not registered:

    • returns an empty object if ignoreUnregistered is true
    • throws an error otherwise

    Type Parameters

    • TState extends Object

    Parameters

    • args: {
          containerId: string;
          ignoreUnregistered?: boolean;
      }
      • containerId: string
      • Optional ignoreUnregistered?: boolean

        If true, the method will ignore the container that is not registered yet. If false, the method will throw an error in such case.

        Default

        false
        

    Returns undefined | Config<TState>

Generated using TypeDoc