You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
InternshipProject/node_modules/rc-picker/es/RangeContext.d.ts

15 lines
531 B

import * as React from 'react';
import type { NullableDateType, RangeValue } from './interface';
export declare type RangeContextProps = {
/**
* Set displayed range value style.
* Panel only has one value, this is only style effect.
*/
rangedValue?: [NullableDateType<any>, NullableDateType<any>] | null;
hoverRangedValue?: RangeValue<any>;
inRange?: boolean;
panelPosition?: 'left' | 'right' | false;
};
declare const RangeContext: React.Context<RangeContextProps>;
export default RangeContext;