UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

16 lines (14 loc) 237 B
/** * @module weekdays * @description A list of weekdays */ export const weekdays = [ 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', ] as const; export type Weekdays = (typeof weekdays)[number];