Files
icehrm/web/node_modules/rc-picker/lib/panels/DecadePanel/index.d.ts
2020-05-20 18:47:29 +02:00

8 lines
373 B
TypeScript

/// <reference types="react" />
import { PanelSharedProps } from '../../interface';
export declare type DecadePanelProps<DateType> = PanelSharedProps<DateType>;
export declare const DECADE_UNIT_DIFF = 10;
export declare const DECADE_DISTANCE_COUNT: number;
declare function DecadePanel<DateType>(props: DecadePanelProps<DateType>): JSX.Element;
export default DecadePanel;