12 lines
183 B
TypeScript
Raw Normal View History

export type TNews = {
title: string
description: string
type: 'hero' | 'grid'
items: {
title: string
content: string
image: string
tag?: Array<string>
}[]
}