drip-table
Version:
A tiny and powerful enterprise-class solution for building tables.
18 lines (17 loc) • 790 B
TypeScript
import './index.less';
import { Moment } from 'moment';
import { PickerPanelProps, PickerProps, RangePickerProps } from 'rc-picker';
import React from 'react';
export declare type DatePickerProps = Omit<PickerProps<Moment> & {
date: string;
}, 'locale' | 'prefixCls' | 'generateConfig'>;
export declare type DateRangePickerProps = Omit<RangePickerProps<Moment> & {
date: string[];
}, 'locale' | 'prefixCls' | 'generateConfig'>;
export declare type CalendarProps = Omit<PickerPanelProps<Moment>, 'locale' | 'prefixCls' | 'generateConfig'>;
declare const _default: {
DatePicker: React.NamedExoticComponent<DatePickerProps>;
DateRangePicker: React.NamedExoticComponent<DateRangePickerProps>;
Calendar: React.NamedExoticComponent<CalendarProps>;
};
export default _default;