antd
Version:
An enterprise-class UI design language and React-based implementation
25 lines (24 loc) • 829 B
TypeScript
/// <reference types="react" />
import React from 'react';
import moment from 'moment';
export default class RangePicker extends React.Component<any, any> {
static contextTypes: {
antLocale: 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;
}