aboutsummaryrefslogtreecommitdiff
path: root/fe/src/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'fe/src/types.ts')
-rw-r--r--fe/src/types.ts18
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 @@
1export interface Size { 1export interface Size {
2 size: number; 2 size: number;
3 unit: string; 3 unit: string;
4} 4}
5 5
6export interface Preference { 6export interface Preference {
7 color: string; 7 color: string;
8 size: Size; 8 size: Size;
9} 9}
10 10
11export interface User { 11export interface User {
12 name: string; 12 name: string;
13 uuid: string; 13 uuid: string;
14} 14}
15
16export interface Statistic {
17 user_id: string;
18 date: string;
19 quantity: number;
20} \ No newline at end of file