plugins/popn-hello@asphyxia/models/scores.ts
2020-11-27 04:12:29 +09:00

14 lines
218 B
TypeScript

export interface Scores {
collection: 'scores',
scores: {
[mid: string]: {
[style: string]: {
[level: string]: {
score: number;
clear: number;
};
};
}
};
}