Skip to main content

Interface: ServiceInfo

Defined in: electron/services/ServiceContainer.ts:92

Information about an initialized service.

Remarks

Contains metadata about a service instance, including its name and the actual service object. Used for service introspection and debugging.

Properties

name

name: string

Defined in: electron/services/ServiceContainer.ts:100

The name of the service.

Remarks

Human-readable service name used for identification and debugging. Corresponds to the service class name (e.g., "DatabaseService").


service

service: unknown

Defined in: electron/services/ServiceContainer.ts:109

The service instance.

Remarks

The actual instantiated service object. Type is unknown to support all service types in the container.