(
arg1: DateType1 | number | string,
arg2: DateType2 | number | string,
)
| 62 | |
| 63 | it("allows dates to be of different types", () => { |
| 64 | function _test<DateType1 extends Date, DateType2 extends Date>( |
| 65 | arg1: DateType1 | number | string, |
| 66 | arg2: DateType2 | number | string, |
| 67 | ) { |
| 68 | isSameISOWeekYear(arg1, arg2); |
| 69 | } |
| 70 | }); |
| 71 | |
| 72 | it("normalizes the dates", () => { |
nothing calls this directly
no test coverage detected