ServiceClass<Self, Id>Aggregate store class produced by Service.
modelsService
Source src/Store.ts:14014 lines
export type type ServiceClass<
Self = unknown,
Id extends string = string
> = any
Aggregate store class produced by
Service
.
ServiceClass<
function (type parameter) Self in type ServiceClass<Self = unknown, Id extends string = string>Self = unknown,
function (type parameter) Id in type ServiceClass<Self = unknown, Id extends string = string>Id extends string = string,
> = type StoreServiceClass<
Self = unknown,
Id extends string = string,
Regs = readonly NormalizedStoreRegistration[]
> = any
Aggregate store class with attached
Storage
layers.
StoreServiceClass<function (type parameter) Self in type ServiceClass<Self = unknown, Id extends string = string>Self, function (type parameter) Id in type ServiceClass<Self = unknown, Id extends string = string>Id>;