5e2f3b159ba527bd034106e0b469137b74aab0c34670ed6366a5d3011c9363cee4bd52e22d11614a6dc2594cf8b0f0a92ded8397ea21f811db2122194be65b 724 B

1234567891011121314151617
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type Thumb from './thumb.vue';
  3. export declare const thumbProps: {
  4. readonly vertical: BooleanConstructor;
  5. readonly size: StringConstructor;
  6. readonly move: NumberConstructor;
  7. readonly ratio: {
  8. readonly type: import("vue").PropType<number>;
  9. readonly required: true;
  10. readonly validator: ((val: unknown) => boolean) | undefined;
  11. __epPropKey: true;
  12. };
  13. readonly always: BooleanConstructor;
  14. };
  15. export type ThumbProps = ExtractPropTypes<typeof thumbProps>;
  16. export type ThumbPropsPublic = __ExtractPublicPropTypes<typeof thumbProps>;
  17. export type ThumbInstance = InstanceType<typeof Thumb> & unknown;