koishi-plugin-beatsaber-bot
Version:
一个 用于 BeatSaber 的 koishi Bot 插件
34 lines (33 loc) • 741 B
TypeScript
export interface ScoreSaberUser {
badges: Badge[];
banned: boolean;
bio: string;
country: string;
countryRank: number;
firstSeen: string;
histories: string;
id: string;
inactive: boolean;
name: string;
permissions: number;
pp: number;
profilePicture: string;
rank: number;
role: null;
scoreStats: ScoreStats;
[property: string]: any;
}
export interface Badge {
description?: string;
image?: string;
[property: string]: any;
}
export interface ScoreStats {
averageRankedAccuracy: number;
rankedPlayCount: number;
replaysWatched: number;
totalPlayCount: number;
totalRankedScore: number;
totalScore: number;
[property: string]: any;
}