6 lines
269 B
TypeScript
6 lines
269 B
TypeScript
/// <reference types="react" />
|
|
import { PanelSharedProps } from '../../interface';
|
|
export declare type WeekPanelProps<DateType> = PanelSharedProps<DateType>;
|
|
declare function WeekPanel<DateType>(props: WeekPanelProps<DateType>): JSX.Element;
|
|
export default WeekPanel;
|