diff options
author | Doog <157747121+doogongithub@users.noreply.github.com> | 2024-02-29 20:13:48 -0500 |
---|---|---|
committer | Doog <157747121+doogongithub@users.noreply.github.com> | 2024-02-29 20:13:48 -0500 |
commit | 9f9a33cbf55d38987a66b709284d2bb4ffea0fe9 (patch) | |
tree | 1e0539e708983ca05bb4e07d22b9ec10b95d2473 /fe/src/types.ts | |
parent | e37c73e33a4aaf7fb8d25b5af03627f20bcda19f (diff) |
modify api, build additional FE components, add types
Diffstat (limited to 'fe/src/types.ts')
-rw-r--r-- | fe/src/types.ts | 14 |
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 @@ | |||
1 | export interface Size { | ||
2 | size: number; | ||
3 | unit: string; | ||
4 | } | ||
5 | |||
6 | export interface Preference { | ||
7 | color: string; | ||
8 | size: Size; | ||
9 | } | ||
10 | |||
11 | export interface User { | ||
12 | name: string; | ||
13 | uuid: string; | ||
14 | } | ||