aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/types/Content.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/types/Content.ts')
-rw-r--r--frontend/src/types/Content.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/src/types/Content.ts b/frontend/src/types/Content.ts
index 775fab4..77b3970 100644
--- a/frontend/src/types/Content.ts
+++ b/frontend/src/types/Content.ts
@@ -6,18 +6,18 @@ export interface ModMenuContent {
6 showcase: string; 6 showcase: string;
7 description: string; 7 description: string;
8 category_id: number; 8 category_id: number;
9}; 9}
10 10
11export interface MapDiscussionContent { 11export interface MapDiscussionContent {
12 title: string; 12 title: string;
13 content: string; 13 content: string;
14}; 14}
15 15
16export interface MapDiscussionCommentContent { 16export interface MapDiscussionCommentContent {
17 comment: string; 17 comment: string;
18}; 18}
19 19
20export interface UploadRunContent { 20export interface UploadRunContent {
21 host_demo: File | null; 21 host_demo: File | null;
22 partner_demo: File | null; 22 partner_demo: File | null;
23}; 23}