14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
export interface IPost{
|
|
postId: number;
|
|
slug: string;
|
|
title: string;
|
|
description: string;
|
|
categories: string[];
|
|
postUrl: string;
|
|
likes: number;
|
|
views: number;
|
|
comments: number;
|
|
image: string;
|
|
createdDate: string;
|
|
modifiedDate: string;
|
|
} |