({ key, value }: {
readonly key: K
readonly value: V
})
| 7641 | * @since 3.10.0 |
| 7642 | */ |
| 7643 | export const ReadonlyMapFromSelf = <K extends Schema.Any, V extends Schema.Any>({ key, value }: { |
| 7644 | readonly key: K |
| 7645 | readonly value: V |
| 7646 | }): ReadonlyMapFromSelf<K, V> => mapFromSelf_(key, value, `ReadonlyMap<${format(key)}, ${format(value)}>`) |
| 7647 | |
| 7648 | /** |
| 7649 | * @category api interface |
no test coverage detected
searching dependent graphs…