Freigeben über


ServiceClass type

Dies ist eine Typdefinition für den Dienst.

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