UNPKG

scheunemann-interfaces

Version:
17 lines (16 loc) 337 B
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; }; }