@cainthus/alex-library
Version:
Component React library for Cainthus - Alex Dashboard.
16 lines (15 loc) • 509 B
TypeScript
import { DateType, DateSelectFunction, RangedSelectFunction } from 'react-infinite-calendar';
export declare type Props = {
width: number | undefined | "auto" | "100%";
height: number | undefined | "auto";
onSelect: DateSelectFunction | RangedSelectFunction;
selected: DateType | false | {
start: DateType;
end: DateType;
};
};
export declare const defaultProps: {
width: number;
height: number;
};
export declare type DefaultProps = Readonly<typeof defaultProps>;