bar.d.ts 681 B

1234567891011
  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 width: StringConstructor;
  6. readonly height: StringConstructor;
  7. readonly ratioX: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 1, boolean>;
  8. readonly ratioY: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 1, boolean>;
  9. };
  10. export declare type BarProps = ExtractPropTypes<typeof barProps>;
  11. export declare type BarInstance = InstanceType<typeof Bar>;