* Nuxt 3.17.4 and other dependencies updated * Temporary fix (maybe) of the Inline Code * Update nuxt to version 4
11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
export interface BlogPost {
|
|
title: string
|
|
date: string
|
|
description: string
|
|
image: string
|
|
alt: string
|
|
ogImage: string
|
|
tags: string[]
|
|
published: boolean
|
|
}
|