(
arg: DateArg<DateType>,
options?: ContextOptions<ResultDate>,
)
| 79 | |
| 80 | it("doesn't enforce argument and context to be of the same type", () => { |
| 81 | function _test<DateType extends Date, ResultDate extends Date = DateType>( |
| 82 | arg: DateArg<DateType>, |
| 83 | options?: ContextOptions<ResultDate>, |
| 84 | ) { |
| 85 | getWeeksInMonth(arg, { in: options?.in }); |
| 86 | } |
| 87 | }); |
| 88 | }); |
| 89 | }); |
nothing calls this directly
no test coverage detected