fredy.siswanto d3dc3b5016 feat: enhance news API schema with author and categories details,
desc: update dashboard to display author names, and improve pagination button styles
2025-03-06 22:49:56 +07:00

21 lines
372 B
TypeScript

export type TNews = {
title: string
description: string
items: Pick<
TNewsDetail,
'title' | 'content' | 'featured' | 'slug' | 'tags' | 'isPremium'
>[]
}
export type TNewsDetail = {
title: string
content: string
featured: string
author: string
date: Date
slug: string
tags?: Array<string>
isPremium?: boolean
categories?: Array<string>
}