@arco-design/web-vue
Version:
Arco Design Vue 2.0: A Vue.js 3 UI Library
17 lines (16 loc) • 367 B
TypeScript
export interface ThumbData {
ratio: number;
thumbSize: number;
max: number;
}
export interface ThumbMap {
size: 'width' | 'height';
direction: 'left' | 'top';
offset: 'offsetWidth' | 'offsetHeight';
client: 'clientX' | 'clientY';
}
export interface ScrollbarProps {
type: 'track' | 'embed';
outerClass: any;
outerStyle: any;
}