mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
14 lines
218 B
TypeScript
14 lines
218 B
TypeScript
export interface Scores {
|
|
collection: 'scores',
|
|
|
|
scores: {
|
|
[mid: string]: {
|
|
[style: string]: {
|
|
[level: string]: {
|
|
score: number;
|
|
clear: number;
|
|
};
|
|
};
|
|
}
|
|
};
|
|
} |