osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
20 lines (19 loc) • 372 B
TypeScript
export interface UsersActivityResponse {
created_at: string;
createdAt: string;
id: number;
type: string;
mode: string;
beatmap: Beatmap;
user: User;
scoreRank?: string;
rank?: number;
}
export interface Beatmap {
title: string;
url: string;
}
export interface User {
username: string;
url: string;
}