mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-23 08:37:09 +00:00
placeholder check
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
export interface Task {
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
type: 'input' | 'file' | 'code';
|
||||
in_competition_position: number;
|
||||
points: number;
|
||||
}
|
||||
|
||||
enum TaskType {
|
||||
INPUT = "input",
|
||||
FILE = "file",
|
||||
CODE = "code",
|
||||
}
|
||||
Reference in New Issue
Block a user