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