@technobuddha > library > Time > Date
Type Alias: DateOptions
ts
type DateOptions = {
firstDayOfWeek?: DayOfWeek;
utc?: boolean;
};Defined in: date.ts:189
Options for date functions
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
firstDayOfWeek? | DayOfWeek | Which day of the week is considered the beginning | src/date.ts:193 |
utc? | boolean | Use the UTC timezone | src/date.ts:191 |