react-native-lunar-calendars
Version:
React Native Calendar Components with Lunar Calendar Support - Fork of react-native-calendars with Vietnamese lunar calendar functionality
15 lines (14 loc) • 471 B
TypeScript
import { ViewStyle, RegisteredStyle } from 'react-native';
interface Theme {
[key: string]: any;
}
export interface CalendarStyle {
container: RegisteredStyle<ViewStyle>;
monthView: RegisteredStyle<ViewStyle>;
week: RegisteredStyle<ViewStyle>;
divider: RegisteredStyle<ViewStyle>;
dayContainer: RegisteredStyle<ViewStyle>;
[key: string]: RegisteredStyle<ViewStyle>;
}
export default function getStyle(theme?: Theme): CalendarStyle;
export {};