(
arg1: DateArg<DateType>,
arg2: DateArg<DateType>,
options?: ContextOptions<ResultDate>,
)
| 59 | |
| 60 | it("doesn't enforce argument and context to be of the same type", () => { |
| 61 | function _test<DateType extends Date, ResultDate extends Date = DateType>( |
| 62 | arg1: DateArg<DateType>, |
| 63 | arg2: DateArg<DateType>, |
| 64 | options?: ContextOptions<ResultDate>, |
| 65 | ) { |
| 66 | isSameYear(arg1, arg2, { in: options?.in }); |
| 67 | } |
| 68 | }); |
| 69 | }); |
| 70 | }); |
nothing calls this directly
no test coverage detected