Type Alias: ServiceContext<TConfig = unknown>
type ServiceContext<TConfig = unknown> = ConstructorParameters<typeof BaseService>[0];
Defined in: service-framework/src/snapshot-service.ts:17
The activation-context type a service constructor receives. Aliased here so
every service uses one consistent, framework-correct shape (matches the
useFactory(context) parameter the ServiceManager passes).
Type Parameters
| Type Parameter | Default type |
|---|---|
TConfig | unknown |