import { Type } from "@tsed/core"; export interface MongooseVirtualRefOptions { ref?: string | Type | (() => Type); foreignField?: string; localField?: string; justOne?: boolean; count?: boolean; options?: object; }