@sourceloop/ctrl-plane-tenant-management-service
Version:
Tenant Management microservice for SaaS control plane
8 lines (7 loc) • 373 B
TypeScript
import { TenantMgmtConfig, Tenant } from '../models';
import { TenantMgmtConfigRepository } from '../repositories';
export declare class TenantMgmtConfigTenantController {
tenantConfigRepository: TenantMgmtConfigRepository;
constructor(tenantConfigRepository: TenantMgmtConfigRepository);
getTenant(id: typeof TenantMgmtConfig.prototype.id): Promise<Tenant>;
}