This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
Lateinicus/frontend/src/models/learner.ts
2018-09-30 20:15:27 +02:00

7 lines
120 B
TypeScript

export interface ILearner {
username: string;
score: number;
}
export type TopTen = ILearner & { nr: number };