@orca-fe/pocket
Version:
UI components by orca-team
9 lines (8 loc) • 440 B
TypeScript
import React from 'react';
import type { VirtualCalendarProps, VirtualCalendarRefType } from './VirtualCalendar';
export interface CardCalendarProps extends Omit<VirtualCalendarProps, 'checkable'> {
/** 选择模式: 按周/日选择 */
checkMode?: 'week' | 'day' | false;
}
declare const CardCalendar: React.ForwardRefExoticComponent<CardCalendarProps & React.RefAttributes<VirtualCalendarRefType>>;
export default CardCalendar;