aboutsummaryrefslogtreecommitdiff
path: root/src/types.d.ts
blob: cfc60bca04b60218409e98ecc98ba14454cbd459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export interface User {
  username: string;
  id: number | null;
}

export interface Solution {
  id: number;
  result: string;
  date: string;
  author: User;
}