Skip to content

@technobuddha > library > Time > Date

Type Alias: DateOptions

ts
type DateOptions = {
  firstDayOfWeek?: DayOfWeek;
  utc?: boolean;
};

Defined in: date.ts:189

Options for date functions

Properties

PropertyTypeDescriptionDefined in
firstDayOfWeek?DayOfWeekWhich day of the week is considered the beginningsrc/date.ts:193
utc?booleanUse the UTC timezonesrc/date.ts:191