@alisdigital/types-library
Version:
TypeScript type definitions for Papilet ecosystem with session soft delete and event management features
9 lines (8 loc) • 439 B
TypeScript
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<string> {
comments: ICommentModelInferCreation[];
column: IColumnModelInferCreation<ICustomerModelInferCreation>;
}