website/types/index.d.ts

15 lines
310 B
TypeScript
Raw Permalink Normal View History

2024-05-25 15:20:10 +08:00
import type { ParsedContent } from '@nuxt/content/dist/runtime/types'
export interface BlogPost extends ParsedContent {
title: string
description: string
date: string
image?: HTMLImageElement
badge?: Badge
authors?: ({
name: string
description?: string
avatar?: Avatar
} & Link)[]
}