UNPKG

test-nut-ui

Version:

<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>

9 lines (8 loc) 542 B
import { Day, MonthInfo } from './type'; export declare const splitDate: (date: string) => string[]; export declare const isMultiple: (day: string, days: string[]) => boolean; export declare const isCurrDay: (month: MonthInfo, day: string | number) => boolean; export declare const getCurrDate: (day: Day, month: MonthInfo) => string; export declare const isStart: (day: string, days: string[]) => boolean; export declare const isEnd: (day: string, days: string[]) => boolean; export declare const isStartAndEnd: (days: string[]) => boolean;