소스 검색

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

jimmylee 4 달 전
부모
커밋
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[]