Procházet zdrojové kódy

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

jimmylee před 2 týdny
rodič
revize
5277819a2f
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  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[]