diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-22 00:46:06 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-22 00:59:04 +0900 |
| commit | 922bc6a1f52d8f01600e9a61ce31963075ec59a5 (patch) | |
| tree | 9fdd2c8d3d01841ca7130504b8f9261116bc45e6 /frontend/app/types/ExecResult.ts | |
| parent | 43d40d375c355837de83501c3f1c122b2bf589bb (diff) | |
| download | phperkaigi-2025-albatross-922bc6a1f52d8f01600e9a61ce31963075ec59a5.tar.gz phperkaigi-2025-albatross-922bc6a1f52d8f01600e9a61ce31963075ec59a5.tar.zst phperkaigi-2025-albatross-922bc6a1f52d8f01600e9a61ce31963075ec59a5.zip | |
refactor(frontend): organize PlayerInfo
Diffstat (limited to 'frontend/app/types/ExecResult.ts')
| -rw-r--r-- | frontend/app/types/ExecResult.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/frontend/app/types/ExecResult.ts b/frontend/app/types/ExecResult.ts new file mode 100644 index 0000000..e0b6bb4 --- /dev/null +++ b/frontend/app/types/ExecResult.ts @@ -0,0 +1,18 @@ +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; +}; |
