Files
Cloud-Blog/app/types/blog.ts
Nicolhetti 5163e756f0 Update nuxt to version 4 (#92)
* Nuxt 3.17.4 and other dependencies updated

* Temporary fix (maybe) of the Inline Code

* Update nuxt to version 4
2025-09-22 18:53:50 +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
}