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.
8 lines
393 B
8 lines
393 B
import type { CSSProperties, ComputedRef } from 'vue';
|
|
import type { SliderInitData, SliderProps } from '../slider';
|
|
declare type Stops = {
|
|
stops: ComputedRef<number[]>;
|
|
getStopStyle: (position: number) => CSSProperties;
|
|
};
|
|
export declare const useStops: (props: SliderProps, initData: SliderInitData, minValue: ComputedRef<number>, maxValue: ComputedRef<number>) => Stops;
|
|
export {};
|
|
|