aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/api/schema.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/api/schema.d.ts')
-rw-r--r--frontend/app/api/schema.d.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/app/api/schema.d.ts b/frontend/app/api/schema.d.ts
index af454e8..3f991f0 100644
--- a/frontend/app/api/schema.d.ts
+++ b/frontend/app/api/schema.d.ts
@@ -188,6 +188,11 @@ export interface components {
title: string;
/** @example This is a problem */
description: string;
+ /**
+ * @example php
+ * @enum {string}
+ */
+ language: "php" | "swift";
/** @example echo 'hello world'; */
sample_code: string;
};