row.d.ts 1007 B

123456789101112
  1. import type { ExtractPropTypes } from 'vue';
  2. import type Row from './row.vue';
  3. export declare const RowJustify: readonly ["start", "center", "end", "space-around", "space-between", "space-evenly"];
  4. export declare const RowAlign: readonly ["top", "middle", "bottom"];
  5. export declare const rowProps: {
  6. readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
  7. readonly gutter: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
  8. readonly justify: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "center" | "space-around" | "space-between" | "space-evenly" | "end" | "start", unknown, "start", boolean>;
  9. readonly align: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "top" | "bottom" | "middle", unknown, "top", boolean>;
  10. };
  11. export declare type RowProps = ExtractPropTypes<typeof rowProps>;
  12. export declare type RowInstance = InstanceType<typeof Row>;