This commit is contained in:
2025-09-19 14:25:20 +08:00
parent 269893a435
commit fbf3f77229
24949 changed files with 2839404 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import type { ExtractPropTypes, __ExtractPublicPropTypes } 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 type ThumbProps = ExtractPropTypes<typeof thumbProps>;
export type ThumbPropsPublic = __ExtractPublicPropTypes<typeof thumbProps>;
export type ThumbInstance = InstanceType<typeof Thumb> & unknown;