8 lines
167 B
TypeScript

import type { TNewsResponse } from '~/apis/common/get-news'
export type TNews = {
title: string
description: string
items: Promise<{ data: TNewsResponse[] }>
}