Files
sage-home/types/blog.ts

17 lines
270 B
TypeScript
Raw Normal View History

2026-01-24 16:54:44 +08:00
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
},
}