(
arg: DateArg<DateType>,
options?: ContextOptions<ResultDate>,
)
| 51 | |
| 52 | it("doesn't enforce argument and context to be of the same type", () => { |
| 53 | function _test<DateType extends Date, ResultDate extends Date = DateType>( |
| 54 | arg: DateArg<DateType>, |
| 55 | options?: ContextOptions<ResultDate>, |
| 56 | ) { |
| 57 | isThisWeek(arg, { in: options?.in }); |
| 58 | } |
| 59 | }); |
| 60 | }); |
| 61 | }); |
nothing calls this directly
no test coverage detected