([value, hlc]: Stamp< Value, boolean >)
| 18 | export type ValuesStampMap = StampMap<ValueStamp<true>>; |
| 19 | |
| 20 | export const stampClone = <Value>([value, hlc]: Stamp< |
| 21 | Value, |
| 22 | boolean |
| 23 | >): Stamp<Value> => stampNew(value, hlc); |
| 24 | |
| 25 | export const stampNew = <Value>( |
| 26 | value: Value, |
nothing calls this directly
no test coverage detected
searching dependent graphs…