amis-rpc-design/node_modules/rc-slider/lib/interface.d.ts
2023-10-07 19:42:30 +08:00

5 lines
240 B
TypeScript

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;