emr-types
Version:
Comprehensive TypeScript Types Library for Electronic Medical Record (EMR) Applications - Domain-Driven Design with Zod Validation
14 lines • 776 B
TypeScript
/**
* Tenant Domain Exports
*
* Complete tenant domain types and utilities
*/
export * from './entities/Tenant';
export * from './value-objects/TenantId';
export * from './enums/TenantStatus';
export * from './enums/TenantType';
export type { TenantId } from './value-objects/TenantId';
export type { Tenant, TenantContact, TenantEmergencyContact, TenantConfig, TenantSystemConfig, TenantSecurityConfig, TenantIntegrationConfig, TenantCustomizationConfig, TenantComplianceConfig, TenantSubscription, TenantPlan, TenantPaymentMethod, TenantTrial, TenantDiscount, TenantFeatures, TenantLimits, TenantSettings } from './entities/Tenant';
export { TenantStatus } from './enums/TenantStatus';
export { TenantType } from './enums/TenantType';
//# sourceMappingURL=index.d.ts.map