lorenzoiovino.com/src/app/models/post.ts
2023-12-29 04:34:47 +01:00

9 lines
152 B
TypeScript

export interface Post {
title: string;
slug: string;
description: string;
content: string;
date: Date;
readTime: number;
image: string;
}