Files
Cloud-Blog/types/blog.ts
Al Asad Nur Riyad dc7f69fbc9 Remove external img provider
Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
2023-05-06 22:51:17 +06:00

11 lines
169 B
TypeScript

export interface BlogPost {
title: string
date: string
description: string
image: string
alt: string
ogImage: string
tags: string[]
published: boolean
}