mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-29 13:24:40 -05:00
13 lines
218 B
TypeScript
13 lines
218 B
TypeScript
export interface Scores {
|
|
collection: 'scores',
|
|
|
|
scores: {
|
|
[key: string]: {
|
|
clearmedal?: number;
|
|
clear_type?: number;
|
|
clear_rank?: number;
|
|
score: number;
|
|
cnt: number;
|
|
};
|
|
};
|
|
} |