Type alias GetStartAndEndDatesForWeekOutput

GetStartAndEndDatesForWeekOutput: {
    endDate: Date;
    startDate: Date;
}

The output of the getStartAndEndDatesForWeek function

Type declaration

  • endDate: Date

    The end date of the week

    Example

    new Date('2020-01-07')
    
  • startDate: Date

    The start date of the week

    Example

    new Date('2020-01-01')
    

Generated using TypeDoc