(key: string, value: T)
| 35 | } |
| 36 | |
| 37 | function writeState<T>(key: string, value: T): void { |
| 38 | touchedKeys.add(key); |
| 39 | updatePersistedState(key, value); |
| 40 | } |
| 41 | |
| 42 | function readString(key: string): string | undefined { |
| 43 | touchedKeys.add(key); |
no test coverage detected