UNPKG

@alisdigital/types-library

Version:

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

7 lines (6 loc) 341 B
import { Document } from "mongoose"; import { IAdvertisementModelAttributes } from "../entities/advertisement.entity"; import { IQuestionModelAttributes } from "../entities/question.entity"; export interface IQuestionModelInferCreation extends IQuestionModelAttributes, Document<string> { advertisement: IAdvertisementModelAttributes; }