angular-covid/src/app/interface/news.ts
2025-04-01 15:11:17 +02:00

21 lines
No EOL
379 B
TypeScript

export interface Source {
id: string | null;
name: string;
}
export interface Article {
source: Source;
author: string;
title: string;
description: string;
url: string;
urlToImage: string;
publishedAt: string;
content: string;
}
export interface NewsResponse {
status: string;
totalResults: number;
articles: Article[];
}