UNPKG

code-story

Version:

Get your code activity log for standup from git

5 lines (4 loc) 284 B
import { OPTIONS_WEEK_DAY_CODE_MAP } from 'src/constants'; export declare type WeekDayCode = '0' | '1' | '2' | '3' | '4' | '5' | '6'; export declare type OptionsWeekDay = keyof typeof OPTIONS_WEEK_DAY_CODE_MAP; export declare type WorkingDayMap = Record<WeekDayCode, boolean | null>;