scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
17 lines (16 loc) • 337 B
TypeScript
export interface IGNewsResponse {
articles: IGNewsResponseArticles[];
totalArticles: number;
}
export interface IGNewsResponseArticles {
title: string;
description: string;
content: string;
url: string;
image: string;
publishedAt: string;
source: {
name: string;
url: string;
};
}