UNPKG

rsuite

Version:

A suite of react components

12 lines (11 loc) 307 B
export declare enum CalendarState { 'TIME' = "TIME", 'MONTH' = "MONTH" } declare const useCalendarState: (defaultState?: CalendarState) => { calendarState: CalendarState | undefined; reset: () => void; openMonth: () => void; openTime: () => void; }; export default useCalendarState;