MCPcopy Create free account
hub / github.com/JamesAC42/hanbok / constructor

Method constructor

app/src/lib/studySessionManager.js:14–21  ·  view source on GitHub ↗
(initialSession)

Source from the content-addressed store, hash-verified

12 */
13export 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected