(initialSession)
| 12 | */ |
| 13 | export class StudySessionManager { |
| 14 | constructor(initialSession) { |
| 15 | this.session = initialSession; |
| 16 | this.cardIndex = 0; |
| 17 | this.currentCard = null; |
| 18 | this.updateCallback = null; |
| 19 | this.deckId = null; |
| 20 | this.deckSettings = null; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Initialize the study session with data from the server |
nothing calls this directly
no outgoing calls
no test coverage detected