File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ d.dayOfMonth();
3434d . daysOfMonth ( ) ;
3535d . weekOfMonth ( ) ;
3636d . weeksOfMonth ( ) ;
37+ d . weeksOfMonthByDay ( ) ;
3738d . weekOfYear ( ) ;
3839d . weeksOfYear ( ) ;
3940d . monthOfYear ( ) ;
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ interface Recurrence {
2121 daysOfMonth ( unit ?: string ) : Recurrence ;
2222 weekOfMonth ( unit ?: string ) : Recurrence ;
2323 weeksOfMonth ( unit ?: string ) : Recurrence ;
24+ weeksOfMonthByDay ( unit ?: string ) : Recurrence ;
2425 weekOfYear ( unit ?: string ) : Recurrence ;
2526 weeksOfYear ( unit ?: string ) : Recurrence ;
2627 monthOfYear ( unit ?: string ) : Recurrence ;
@@ -52,5 +53,7 @@ declare module "dayjs" {
5253 start ?: string | Dayjs ;
5354 end ?: string | Dayjs ;
5455 } ) : Recurrence ;
56+ monthWeekByDay ( ) : number ;
57+ monthWeek ( ) : number ;
5558 }
5659}
You can’t perform that action at this time.
0 commit comments