UNPKG

hongluan-ui

Version:
17 lines (16 loc) 668 B
import type { ExtractPropTypes } from 'vue'; import type ScrollbarThumb from './thumb.vue'; export declare const scrollbarThumbProps: { readonly vertical: BooleanConstructor; readonly size: StringConstructor; readonly move: NumberConstructor; readonly ratio: { readonly type: import("vue").PropType<number>; readonly required: true; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly always: BooleanConstructor; }; export declare type ScrollbarThumbProps = ExtractPropTypes<typeof scrollbarThumbProps>; export declare type ScrollbarThumbInstance = InstanceType<typeof ScrollbarThumb>;