blob: 09a7ef45f100df8378b1c23f4a2ca8a3c64a4ac1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export type VerificationResultStatus =
| "running"
| "success"
| "wrong_answer"
| "timeout"
| "compile_error"
| "runtime_error"
| "internal_error"
| "canceled";
export type VerificationResult = {
testcase_id: number | null;
status: VerificationResultStatus;
label: string;
stdout: string;
stderr: string;
};
|