UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

7 lines (6 loc) 247 B
/** * @module weekdays * @description A list of weekdays */ export declare const weekdays: readonly ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"]; export declare type Weekdays = (typeof weekdays)[number];