We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff171a commit 17af9efCopy full SHA for 17af9ef
src/hooks/useRangeDisabled.ts
@@ -16,6 +16,7 @@ export default function useRangeDisabled<DateType>(
16
return true;
17
}
18
19
- if (startDate) {}
+ if (startDate) {
20
+ }
21
22
src/interface.ts
@@ -92,4 +92,6 @@ export type OnPanelChange<DateType> = (
92
) => void;
93
94
export type EventValue<DateType> = DateType | null;
95
-export type RangeValue<DateType> = [EventValue<DateType>, EventValue<DateType>] | null;
+export type RangeValue<DateType> =
96
+ | [EventValue<DateType>, EventValue<DateType>]
97
+ | null;
0 commit comments