21 lines
365 B
TypeScript
Raw Normal View History

export type TNews = {
title: string
description: string
2025-02-20 23:22:04 +07:00
items: Pick<
TNewsDetail,
'title' | 'content' | 'featured' | 'slug' | 'tags' | 'isPremium'
>[]
}
type TNewsDetail = {
title: string
content: string
featured: string
author: string
date: Date
slug: string
tags?: Array<string>
2025-02-20 23:22:04 +07:00
isPremium?: boolean
categories?: Array<string>
}