Files
sage-home/types/blog.ts
砂糖 70f337bb92 init
2026-01-24 16:54:44 +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
},
}