@nutui/nutui-react
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
17 lines (16 loc) • 434 B
TypeScript
export interface CalendarDay {
day: string | number;
type: string;
}
export interface CalendarMonthInfo {
curData: string[] | string;
title: string;
monthData: CalendarDay[];
cssHeight?: number;
scrollTop?: number;
}
export type CalendarValue = string | string[];
export type CalendarType = 'single' | 'range' | 'multiple' | 'week';
export type CalendarRef = {
scrollToDate: (date: string) => void;
};