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.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/fe/src/types.ts b/fe/src/types.ts
new file mode 100644
index 0000000..03d613d
--- /dev/null
+++ b/fe/src/types.ts
@@ -0,0 +1,14 @@
1export interface Size {
2 size: number;
3 unit: string;
4}
5
6export interface Preference {
7 color: string;
8 size: Size;
9}
10
11export interface User {
12 name: string;
13 uuid: string;
14}