9 lines
353 B
TypeScript
9 lines
353 B
TypeScript
import type { PanelSharedProps } from '../../interface';
|
|
export type WeekPanelProps<DateType> = PanelSharedProps<DateType>;
|
|
declare function WeekPanel<DateType>(_props: WeekPanelProps<DateType>): import("vue/jsx-runtime").JSX.Element;
|
|
declare namespace WeekPanel {
|
|
var displayName: string;
|
|
var inheritAttrs: boolean;
|
|
}
|
|
export default WeekPanel;
|