index.d.ts 335 B

12345678
  1. import type { PanelSharedProps } from '../../interface';
  2. export declare type WeekPanelProps<DateType> = PanelSharedProps<DateType>;
  3. declare function WeekPanel<DateType>(_props: WeekPanelProps<DateType>): JSX.Element;
  4. declare namespace WeekPanel {
  5. var displayName: string;
  6. var inheritAttrs: boolean;
  7. }
  8. export default WeekPanel;