UNPKG

@alisdigital/types-library

Version:

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

7 lines (6 loc) 280 B
import { ICampaignModelAttributes } from "../entity/campaign.entity"; export interface ICampaignCreateRequest extends Omit<ICampaignModelAttributes, "_id" | "createdAt" | "updatedAt"> { } export interface ICampaignUpdateRequest extends ICampaignCreateRequest { _id: string; }