您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 行
170 B

  1. export interface RecollectionHistory {
  2. userId: string,
  3. wordId: string,
  4. history: Array<{
  5. timeStamp: Date,
  6. wasRecallSuccessful: boolean
  7. }>
  8. }