diff options
author | 2022-07-01 01:17:19 +0400 | |
---|---|---|
committer | 2022-07-01 01:17:19 +0400 | |
commit | acb7df25f258701722ee56b087e272b7118fe8ac (patch) | |
tree | 76b82f0bfe89c92491293b36061cd4013113804e /src/api/question.ts | |
parent | Restructure FormPage (diff) |
Style Changes
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'src/api/question.ts')
-rw-r--r-- | src/api/question.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/question.ts b/src/api/question.ts index 3561055..a9a4d4a 100644 --- a/src/api/question.ts +++ b/src/api/question.ts @@ -17,7 +17,7 @@ export interface Question { required: boolean } -type unittestError = { +type UnittestError = { question_id: string, question_index: number, return_code: number, @@ -27,5 +27,5 @@ type unittestError = { export interface UnittestFailure { error: string, - test_results: unittestError[], + test_results: UnittestError[], } |