aboutsummaryrefslogtreecommitdiff
path: root/fe/src/types.ts
blob: 526e7eb2912f4fb5dc9815cc145fddbe066e7596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export interface Size {
  size: number;
  unit: string;
}

export interface Preference {
  color: string;
  size: Size;
}

export interface User {
  name: string;
  uuid: string;
}

export interface Statistic {
  user_id: string;
  date: string;
  quantity: number;
}