@arkasuryawan/m2-interfaces
Version:
Squaremetre Data Interfaces
16 lines (15 loc) • 451 B
TypeScript
import { AuditInterface, BlogDisplay, CategoryInterface, StatusType } from ".";
export interface BlogInterface extends AuditInterface {
title?: string;
slug?: string;
shortDescription?: string;
description?: string;
categoryIds?: string[];
categories?: CategoryInterface[];
status?: StatusType;
blogDisplay?: BlogDisplay;
bannerURL?: string;
thumbnailURL?: string;
videoUrl?: string;
author?: string;
}