* 下一个周末
| 723 | * 下一个周末 |
| 724 | */ |
| 725 | interface NextWeekend { |
| 726 | /** |
| 727 | * 周末日期 YYYY-MM-DD |
| 728 | */ |
| 729 | date: string |
| 730 | /** |
| 731 | * 星期几 |
| 732 | */ |
| 733 | weekday: string |
| 734 | /** |
| 735 | * 距离周末的天数 |
| 736 | */ |
| 737 | daysUntil: number |
| 738 | } |
| 739 | |
| 740 | /** |
| 741 | * 当前假期信息 |
nothing calls this directly
no outgoing calls
no test coverage detected