UNPKG

@alisdigital/types-library

Version:

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

16 lines (15 loc) 336 B
import { BlogStatusType } from "../enum/blog.enum"; export interface IBlogUpsertRequest { _id: string; title: string; slug?: string; status: BlogStatusType; abstract: string; content: string; tags: string[]; seo: { title: string; description: string; keywords: string[]; }; }