(key: string)
| 40 | } |
| 41 | |
| 42 | function readString(key: string): string | undefined { |
| 43 | touchedKeys.add(key); |
| 44 | return readPersistedString(key); |
| 45 | } |
| 46 | |
| 47 | function readState<T>(key: string, defaultValue: T): T { |
| 48 | touchedKeys.add(key); |
no test coverage detected