ソースを参照

feat(speaking): add grade to TopicDiscussionConfig and SessionConfig types

jimmylee 2 ヶ月 前
コミット
9cc7e2e64a
1 ファイル変更2 行追加0 行削除
  1. 2 0
      src/types/englishSpeaking.ts

+ 2 - 0
src/types/englishSpeaking.ts

@@ -50,6 +50,7 @@ export interface LearningGoals {
 // 话题讨论配置
 export interface TopicDiscussionConfig {
   topic: string
+  grade: string
   selectedRole: string
   learningGoals: LearningGoals
   practice: PracticeSettings
@@ -239,6 +240,7 @@ export type SSEEvent =
 // 对话会话配置
 export interface SessionConfig {
   topic: string
+  grade: string
   roleId: string
   totalRounds: number
   vocabulary?: string[]