(
arg: DateArg<DateType>,
options?: ContextOptions<ResultDate>,
)
| 66 | |
| 67 | it("doesn't enforce argument and context to be of the same type", () => { |
| 68 | function _test<DateType extends Date, ResultDate extends Date = DateType>( |
| 69 | arg: DateArg<DateType>, |
| 70 | options?: ContextOptions<ResultDate>, |
| 71 | ) { |
| 72 | getISOWeek(arg, { in: options?.in }); |
| 73 | } |
| 74 | }); |
| 75 | }); |
| 76 | }); |
nothing calls this directly
no test coverage detected