aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/models/PlayerInfo.ts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-12 05:54:49 +0900
committernsfisis <nsfisis@gmail.com>2024-08-12 05:54:49 +0900
commit3074f8d74330a2c238040755b758230d682a4bc4 (patch)
tree3c45267ee25aa78be1ad4c31e0c09894e656b506 /frontend/app/models/PlayerInfo.ts
parent7527e54bba0c528015ce402bfa4534c1ab6ca1da (diff)
parentb37d6f213c2f3b19631e5067f39a7106859faaed (diff)
downloadiosdc-japan-2024-albatross-3074f8d74330a2c238040755b758230d682a4bc4.tar.gz
iosdc-japan-2024-albatross-3074f8d74330a2c238040755b758230d682a4bc4.tar.zst
iosdc-japan-2024-albatross-3074f8d74330a2c238040755b758230d682a4bc4.zip
Merge branch 'feat/play-page'
Diffstat (limited to 'frontend/app/models/PlayerInfo.ts')
-rw-r--r--frontend/app/models/PlayerInfo.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/app/models/PlayerInfo.ts b/frontend/app/models/PlayerInfo.ts
new file mode 100644
index 0000000..8092ab3
--- /dev/null
+++ b/frontend/app/models/PlayerInfo.ts
@@ -0,0 +1,9 @@
+import type { SubmitResult } from "./SubmitResult";
+
+export type PlayerInfo = {
+ displayName: string | null;
+ iconPath: string | null;
+ score: number | null;
+ code: string | null;
+ submitResult: SubmitResult;
+};