UNPKG

osu-api-extended

Version:

Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools

39 lines (38 loc) 820 B
export interface NewsDetailsResponse { id: number; author: string; edit_url: string; first_image: string; 'first_image@2x': string; published_at: string; updated_at: string; slug: string; title: string; content: string; navigation: Navigation; } export interface Navigation { newer: Newer; older: Older; } export interface Newer { id: number; author: string; edit_url: string; first_image: string; published_at: string; updated_at: string; slug: string; title: string; } export interface Older { id: number; author: string; edit_url: string; first_image: string; 'first_image@2x': string; published_at: string; updated_at: string; slug: string; title: string; }