minishouyin/node_modules/antd/es/slider/Context.d.ts

10 lines
442 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
import type { SliderProps as RcSliderProps } from 'rc-slider';
import type { DirectionType } from '../config-provider';
export interface SliderInternalContextProps {
handleRender?: RcSliderProps['handleRender'];
direction?: DirectionType;
}
/** @private Internal context. Do not use in your production. */
declare const SliderInternalContext: import("react").Context<SliderInternalContextProps>;
export default SliderInternalContext;