Files
fad-trade-next/types/blog.ts
砂糖 7cd50654ed init
2025-11-21 13:36:06 +08:00

17 lines
270 B
TypeScript

export type BlogPost = {
locale?: string
title: string
description?: string
image?: string
slug: string
tags?: string
date: Date
visible?: 'draft' | 'invisible' | 'published'
pin?: boolean
content: string
metadata: {
[key: string]: any
},
}