aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/models/PlayerInfo.ts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-22 00:46:06 +0900
committernsfisis <nsfisis@gmail.com>2024-08-22 00:59:04 +0900
commit922bc6a1f52d8f01600e9a61ce31963075ec59a5 (patch)
tree9fdd2c8d3d01841ca7130504b8f9261116bc45e6 /frontend/app/models/PlayerInfo.ts
parent43d40d375c355837de83501c3f1c122b2bf589bb (diff)
downloadiosdc-japan-2024-albatross-922bc6a1f52d8f01600e9a61ce31963075ec59a5.tar.gz
iosdc-japan-2024-albatross-922bc6a1f52d8f01600e9a61ce31963075ec59a5.tar.zst
iosdc-japan-2024-albatross-922bc6a1f52d8f01600e9a61ce31963075ec59a5.zip
refactor(frontend): organize PlayerInfo
Diffstat (limited to 'frontend/app/models/PlayerInfo.ts')
-rw-r--r--frontend/app/models/PlayerInfo.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/frontend/app/models/PlayerInfo.ts b/frontend/app/models/PlayerInfo.ts
deleted file mode 100644
index 8092ab3..0000000
--- a/frontend/app/models/PlayerInfo.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import type { SubmitResult } from "./SubmitResult";
-
-export type PlayerInfo = {
- displayName: string | null;
- iconPath: string | null;
- score: number | null;
- code: string | null;
- submitResult: SubmitResult;
-};