UNPKG

@nestdevx/tenant

Version:

Tenant module for multi-tenant NestJS applications.

13 lines (12 loc) 306 B
import { Query } from "@nestjs/cqrs"; import { IRole } from "../types"; export declare class GetUserDetail extends Query<{ firstName: string; lastName: string; gender: string; tenantId?: string; roles?: Array<IRole>; }> { readonly userId: string; constructor(userId: string); }