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