jimpex
    Preparing search index...

    Type Alias ControllerProviderRegisterFn

    ControllerProviderRegisterFn: <ContainerType extends Jimpex = Jimpex>(
        container: ContainerType,
        route: string,
    ) => Controller

    The function a controller provider uses to configure/extend the container before returning an actual controller.

    Type Declaration

      • <ContainerType extends Jimpex = Jimpex>(
            container: ContainerType,
            route: string,
        ): Controller
      • Type Parameters

        Parameters

        • container: ContainerType

          The reference to the Jimpex container.

        • route: string

          The route on which the controller will be mounted on.

        Returns Controller