(config: ModConfig, state?: ModState)
| 363 | private state: ModState; |
| 364 | |
| 365 | constructor(config: ModConfig, state?: ModState) { |
| 366 | this.config = config; |
| 367 | this.state = state ?? defaultState(config); |
| 368 | } |
| 369 | |
| 370 | // --- Getters --- |
| 371 |
nothing calls this directly
no test coverage detected