amis-rpc-design/node_modules/rc-slider/lib/interface.d.ts

5 lines
240 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import type React from 'react';
export type Direction = 'rtl' | 'ltr' | 'ttb' | 'btt';
export type OnStartMove = (e: React.MouseEvent | React.TouchEvent, valueIndex: number) => void;
export type AriaValueFormat = (value: number) => string;