Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ServiceClass type

This is a type definition for the Service.

export type ServiceClass<T> = {
 new (serviceScope: IServiceScope): T;
} | {
 new (serviceScope: ServiceScope): T;
};