Parcourir la source

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

jimmylee il y a 2 mois
Parent
commit
9cc7e2e64a
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  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[]