diff options
Diffstat (limited to 'frontend/src/types/Content.tsx')
| -rw-r--r-- | frontend/src/types/Content.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/src/types/Content.tsx b/frontend/src/types/Content.tsx index e593505..5733f1f 100644 --- a/frontend/src/types/Content.tsx +++ b/frontend/src/types/Content.tsx | |||
| @@ -16,3 +16,11 @@ export interface MapDiscussionContent { | |||
| 16 | export interface MapDiscussionCommentContent { | 16 | export interface MapDiscussionCommentContent { |
| 17 | comment: string; | 17 | comment: string; |
| 18 | }; | 18 | }; |
| 19 | |||
| 20 | export interface UploadRunContent { | ||
| 21 | map_id: number; | ||
| 22 | host_demo: File | null; | ||
| 23 | partner_demo: File | null; | ||
| 24 | partner_id?: string; | ||
| 25 | is_partner_orange?: boolean; | ||
| 26 | }; | ||