(self: ReadonlyRecord<K, A>)
| 1020 | <K extends string | symbol, A, K1 extends K | ((string | symbol) & {}), B>( |
| 1021 | self: ReadonlyRecord<K, A>, |
| 1022 | key: K1, |
| 1023 | value: B |
| 1024 | ): Record<K | K1, A | B> => { |
| 1025 | return { ...self, [key]: value } as any |
nothing calls this directly
no test coverage detected
searching dependent graphs…