hosanna-ui-docs - v0.9.0
    Preparing search index...

    Represents an item in the IoC (Inversion of Control) service map. Each item defines how a service is registered and resolved.

    interface IOCServiceMapItem {
        clazz?: new (...args: any[]) => any;
        func?: () => unknown;
        key: string;
        roNode?: string;
        sgNode?: string;
        value?: unknown;
    }
    Index

    Properties

    clazz?: new (...args: any[]) => any

    The class constructor for the service, if applicable.

    func?: () => unknown

    A function that returns the service instance.

    key: string

    The unique key identifying the service.

    roNode?: string

    The RONode type for the service, if applicable.

    sgNode?: string

    The SGNode type for the service, if applicable.

    value?: unknown

    A static value to register as the service.