diff options
Diffstat (limited to 'fe/src/types.ts')
-rw-r--r-- | fe/src/types.ts | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/fe/src/types.ts b/fe/src/types.ts index 03d613d..526e7eb 100644 --- a/fe/src/types.ts +++ b/fe/src/types.ts | |||
@@ -1,14 +1,20 @@ | |||
1 | export interface Size { | 1 | export interface Size { |
2 | size: number; | 2 | size: number; |
3 | unit: string; | 3 | unit: string; |
4 | } | 4 | } |
5 | 5 | ||
6 | export interface Preference { | 6 | export interface Preference { |
7 | color: string; | 7 | color: string; |
8 | size: Size; | 8 | size: Size; |
9 | } | 9 | } |
10 | 10 | ||
11 | export interface User { | 11 | export interface User { |
12 | name: string; | 12 | name: string; |
13 | uuid: string; | 13 | uuid: string; |
14 | } | 14 | } |
15 | |||
16 | export interface Statistic { | ||
17 | user_id: string; | ||
18 | date: string; | ||
19 | quantity: number; | ||
20 | } \ No newline at end of file | ||