aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/models/PlayerInfo.ts
diff options
context:
space:
mode:
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;
+};