row.d.ts 1.1 KB

1234567891011121314151617
  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: {
  10. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "top" | "bottom" | "middle", unknown>>;
  11. readonly required: false;
  12. readonly validator: ((val: unknown) => boolean) | undefined;
  13. __epPropKey: true;
  14. };
  15. };
  16. export type RowProps = ExtractPropTypes<typeof rowProps>;
  17. export type RowInstance = InstanceType<typeof Row>;