osu-api-extended
Version:
Advanced osu! api wrapper for v1 and v2, with extra stuff
37 lines (36 loc) • 758 B
TypeScript
export interface NewsDetailsResponse {
id: number;
author: string;
edit_url: string;
first_image: 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;
published_at: string;
updated_at: string;
slug: string;
title: string;
}