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.
29 lines
637 B
29 lines
637 B
import type { CSSProperties } from 'vue';
|
|
export declare const BAR_MAP: {
|
|
vertical: {
|
|
offset: string;
|
|
scroll: string;
|
|
scrollSize: string;
|
|
size: string;
|
|
key: string;
|
|
axis: string;
|
|
client: string;
|
|
direction: string;
|
|
};
|
|
horizontal: {
|
|
offset: string;
|
|
scroll: string;
|
|
scrollSize: string;
|
|
size: string;
|
|
key: string;
|
|
axis: string;
|
|
client: string;
|
|
direction: string;
|
|
};
|
|
};
|
|
export declare const renderThumbStyle: ({ move, size, bar }: {
|
|
move: any;
|
|
size: any;
|
|
bar: any;
|
|
}) => CSSProperties;
|