11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
|
|
export type TNews = {
|
||
|
|
title: string
|
||
|
|
description: string
|
||
|
|
type: 'hero' | 'grid'
|
||
|
|
items: {
|
||
|
|
title: string
|
||
|
|
content: string
|
||
|
|
image: string
|
||
|
|
}[]
|
||
|
|
}
|