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.

17 lines
628 B

import type { ExtractPropTypes } from 'vue';
import type Thumb from './thumb.vue';
export declare const thumbProps: {
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) | undefined;
__epPropKey: true;
};
readonly always: BooleanConstructor;
};
export declare type ThumbProps = ExtractPropTypes<typeof thumbProps>;
export declare type ThumbInstance = InstanceType<typeof Thumb>;