You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
378 B
8 lines
378 B
/// <reference types="react" />
|
|
import type { 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;
|