()
| 7 | |
| 8 | export class TutorialManager { |
| 9 | constructor() { |
| 10 | this.currentStep = 0; |
| 11 | this.completed = false; |
| 12 | this.listeners = new Map(); |
| 13 | this.loadProgress(); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Load progress from localStorage |
nothing calls this directly
no test coverage detected