turkmen-expo/lib/types/NewsPage.type.ts

20 lines
319 B
TypeScript
Raw Normal View History

2025-10-12 17:42:17 +00:00
export interface NewsPageType {
data: Data;
}
export interface Data {
id: number;
title: string;
published_at: string;
featured_images: FeaturedImage[];
content_html: string;
}
export interface FeaturedImage {
id: number;
disk_name: string;
file_name: string;
path: string;
extension: string;
}