UNPKG

@nestdevx/tenant

Version:

Tenant module for multi-tenant NestJS applications.

11 lines (10 loc) 267 B
import { TenantDocument } from "../entities/tenant.entity"; export declare class TenantDto { id: string; name: string; createdAt: string; updatedAt: string; host: string; isActive: boolean; constructor(partial: Partial<TenantDocument>); }