1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
export type ExecResultStatus = | "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; };