14 lines
509 B
TypeScript
14 lines
509 B
TypeScript
import type { DateLib } from "../classes/index.js";
|
|
/**
|
|
* Returns the end date of the week in the broadcast calendar.
|
|
*
|
|
* The broadcast week ends on the last day of the last broadcast week for the
|
|
* given date.
|
|
*
|
|
* @since 9.4.0
|
|
* @param date The date for which to calculate the end of the broadcast week.
|
|
* @param dateLib The date library to use for date manipulation.
|
|
* @returns The end date of the broadcast week.
|
|
*/
|
|
export declare function endOfBroadcastWeek(date: Date, dateLib: DateLib): Date;
|