UNPKG

@alisdigital/types-library

Version:

TypeScript type definitions for Papilet ecosystem with session soft delete and event management features

7 lines (6 loc) 295 B
import { Document } from "mongoose"; import { IUserModelInferCreation } from "../../Auth/DTO/user.dto"; import { IBlogModelAttributes } from "../entities/blog.entity"; export interface IBlogModelInferCreation extends IBlogModelAttributes, Document<string> { user: IUserModelInferCreation; }