antd-meck
Version:
An enterprise-class UI design language and React-based implementation
22 lines (21 loc) • 781 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import * as moment from 'moment';
export default class RangePicker extends React.Component<any, any> {
static defaultProps: {
prefixCls: string;
allowClear: boolean;
showToday: boolean;
};
constructor(props: any);
componentWillReceiveProps(nextProps: any): void;
clearSelection: (e: any) => void;
clearHoverValue: () => void;
handleChange: (value: moment.Moment[]) => void;
handleOpenChange: (open: any) => void;
handleShowDateChange: (showDate: any) => void;
handleHoverChange: (hoverValue: any) => void;
setValue(value: any, hidePanel?: any): void;
renderFooter: (...args: any[]) => (JSX.Element | null)[] | null;
render(): JSX.Element;
}