index.d.ts 353 B

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