igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
26 lines (25 loc) • 802 B
TypeScript
import { Path } from "igniteui-webcomponents-core";
import { IList$1, Type } from "igniteui-webcomponents-core";
import { MultiSliderOrientation } from "./MultiSliderOrientation";
import { Brush } from "igniteui-webcomponents-core";
/**
* @hidden
*/
export interface IMultiSliderTrackRangeVisual {
readonly thumbBox: Path;
readonly thumbRidges: Path;
readonly allPaths: IList$1<Path>;
width: number;
height: number;
translateX: number;
translateY: number;
orientation: MultiSliderOrientation;
getThumbBoxDefaultStroke(): Brush;
getThumbBoxDefaultStrokeThickness(): number;
getThumbBoxDefaultBrush(): Brush;
getThumbRidgesDefaultStroke(): Brush;
}
/**
* @hidden
*/
export declare let IMultiSliderTrackRangeVisual_$type: Type;