Files
dsProject/dsBase/WebRoot/html/cdn/es/components/slider/src/useStops.d.ts
2025-08-14 15:45:08 +08:00

4 lines
267 B
TypeScript

import type { ComputedRef } from 'vue';
import type { ISliderInitData, ISliderProps, Stops } from './slider.type';
export declare const useStops: (props: ISliderProps, initData: ISliderInitData, minValue: ComputedRef<number>, maxValue: ComputedRef<number>) => Stops;