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