index.d.ts 441 B

12345678910
  1. import type { PanelSharedProps } from '../../interface';
  2. export declare type DecadePanelProps<DateType> = PanelSharedProps<DateType>;
  3. export declare const DECADE_UNIT_DIFF = 10;
  4. export declare const DECADE_DISTANCE_COUNT: number;
  5. declare function DecadePanel<DateType>(_props: DecadePanelProps<DateType>): JSX.Element;
  6. declare namespace DecadePanel {
  7. var displayName: string;
  8. var inheritAttrs: boolean;
  9. }
  10. export default DecadePanel;