Compartir a través de


ServiceClass type

Esta es una definición de tipo para el servicio.

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