bar.d.ts 573 B

12345678910111213
  1. import type { ExtractPropTypes } from 'vue';
  2. import type Bar from './bar.vue';
  3. export declare const barProps: {
  4. readonly always: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  5. readonly minSize: {
  6. readonly type: import("vue").PropType<number>;
  7. readonly required: true;
  8. readonly validator: ((val: unknown) => boolean) | undefined;
  9. __epPropKey: true;
  10. };
  11. };
  12. export type BarProps = ExtractPropTypes<typeof barProps>;
  13. export type BarInstance = InstanceType<typeof Bar> & unknown;