Partager via


ServiceClass type

Il s’agit d’une définition de type pour le service.

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