({ key, value }: {
readonly key: K
readonly value: V
})
| 7663 | * @since 3.10.0 |
| 7664 | */ |
| 7665 | export const MapFromSelf = <K extends Schema.Any, V extends Schema.Any>({ key, value }: { |
| 7666 | readonly key: K |
| 7667 | readonly value: V |
| 7668 | }): MapFromSelf<K, V> => mapFromSelf_(key, value, `Map<${format(key)}, ${format(value)}>`) as any |
| 7669 | |
| 7670 | /** |
| 7671 | * @category api interface |
no test coverage detected
searching dependent graphs…