Skip to content

Commit

Permalink
Format all files
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj committed Apr 1, 2023
1 parent 4b11a77 commit e90c73d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export type HourGroup = {

export type HourGroups = HourGroup[];

export type Weekday = typeof WEEKDAYS[keyof typeof WEEKDAYS];
export type Weekday = (typeof WEEKDAYS)[keyof typeof WEEKDAYS];

export type WeekdayName = typeof WEEKDAY_NAMES[keyof typeof WEEKDAY_NAMES];
export type WeekdayName = (typeof WEEKDAY_NAMES)[keyof typeof WEEKDAY_NAMES];

export type WeekdayRange = `${WeekdayName}-${WeekdayName}` | WeekdayName;

Expand Down

0 comments on commit e90c73d

Please sign in to comment.