UNPKG

igniteui-webcomponents-inputs

Version:

Ignite UI Web Components inputs components.

28 lines (27 loc) 859 B
import { Path } from "igniteui-webcomponents-core"; import { TextBlock } from "igniteui-webcomponents-core"; import { IList$1, Type } from "igniteui-webcomponents-core"; import { Brush } from "igniteui-webcomponents-core"; /** * @hidden */ export interface IMultiSliderTrackThumbCalloutVisual { readonly calloutBox: Path; readonly calloutText: TextBlock; readonly allPaths: IList$1<Path>; width: number; height: number; translateX: number; translateY: number; textTranslateX: number; textTranslateY: number; isVisible: boolean; getCalloutBoxDefaultStroke(): Brush; getCalloutBoxDefaultStrokeThickness(): number; getCalloutBoxDefaultBrush(): Brush; getCalloutTextDefaultBrush(): Brush; } /** * @hidden */ export declare let IMultiSliderTrackThumbCalloutVisual_$type: Type;