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.
22 lines
622 B
22 lines
622 B
import * as React from 'react';
|
|
import { SliderPropsType } from './PropsType';
|
|
export interface SliderProps extends SliderPropsType {
|
|
prefixCls?: string;
|
|
marks?: {
|
|
[key: number]: string;
|
|
};
|
|
dots?: boolean;
|
|
included?: boolean;
|
|
maximumTrackStyle?: React.CSSProperties;
|
|
minimumTrackStyle?: React.CSSProperties;
|
|
handleStyle?: React.CSSProperties;
|
|
trackStyle?: React.CSSProperties;
|
|
railStyle?: React.CSSProperties;
|
|
}
|
|
export default class Slider extends React.Component<SliderProps, any> {
|
|
static defaultProps: {
|
|
prefixCls: string;
|
|
};
|
|
render(): JSX.Element;
|
|
}
|