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 c7257b1 commit a457c72Copy full SHA for a457c72
packages/core/src/Calendar/index.tsx
@@ -11,7 +11,7 @@ export let newDates = new Date();
11
export let toYear = newDates.getFullYear();
12
export let toMonth = newDates.getMonth();
13
export let toDays = newDates.getDate();
14
-interface barState {
+interface BarState {
15
title?: string;
16
barRightText?: string;
17
barLeftText?: string;
@@ -24,7 +24,7 @@ export interface CalendarProps extends ViewProps {
24
color: string;
25
//是否显示农历及假日
26
lunarHoliday: boolean;
27
- bar?: barState;
+ bar?: BarState;
28
//农历详情
29
showLunar: boolean;
30
}
0 commit comments