index.d.ts 373 B

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