UNPKG

shineout

Version:

Shein 前端组件库

19 lines (18 loc) 613 B
import { PureComponent } from 'react'; import { UnionPannelProps } from './Props'; declare class Month extends PureComponent<UnionPannelProps> { handleNextYear: () => void; handlePrevYear: () => void; constructor(props: UnionPannelProps); getOptions(): { timeZone: string | undefined; weekStartsOn: any; }; handleYearChange(year: number): void; handleYearClick(): void; handleMonthClick(month: number): void; handleDisabled(date: Date): boolean | undefined; renderMonth(m: string, i: number): JSX.Element; render(): JSX.Element; } export default Month;