import { Document } from "mongoose"; import { ICustomerModelAttributes } from "../entities/customer.entity"; import { ICommentModelInferCreation } from "./comment.dto"; import { IColumnModelInferCreation } from "./column.dto"; export interface ICustomerModelInferCreation extends ICustomerModelAttributes, Document { comments: ICommentModelInferCreation[]; column: IColumnModelInferCreation; }