aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/models/ExecResult.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/ExecResult.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/ExecResult.ts')
-rw-r--r--frontend/app/models/ExecResult.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/frontend/app/models/ExecResult.ts b/frontend/app/models/ExecResult.ts
deleted file mode 100644
index e0b6bb4..0000000
--- a/frontend/app/models/ExecResult.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-export type ExecResultStatus =
- | "waiting_submission"
- | "running"
- | "success"
- | "wrong_answer"
- | "timeout"
- | "compile_error"
- | "runtime_error"
- | "internal_error"
- | "canceled";
-
-export type ExecResult = {
- testcase_id: number | null;
- status: ExecResultStatus;
- label: string;
- stdout: string;
- stderr: string;
-};