@alisdigital/types-library
Version:
TypeScript type definitions for Papilet ecosystem with session soft delete and event management features
9 lines (8 loc) • 419 B
TypeScript
import { Document } from "mongoose";
import { ICommentModelAttributes } from "../entities/comment.entity";
import { ICustomerModelInferCreation } from "./customer.dto";
import { IUserModelInferCreation } from "../../Auth/DTO/user.dto";
export interface ICommentModelInferCreation extends ICommentModelAttributes, Document<string> {
assignedTo: ICustomerModelInferCreation;
createdBy: IUserModelInferCreation;
}