divider.d.ts 873 B

12345678910
  1. import type { ExtractPropTypes } from 'vue';
  2. import type Divider from './divider.vue';
  3. export declare type BorderStyle = CSSStyleDeclaration['borderStyle'];
  4. export declare const dividerProps: {
  5. readonly direction: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "vertical" | "horizontal", unknown, "horizontal", boolean>;
  6. readonly contentPosition: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "left" | "right" | "center", unknown, "center", boolean>;
  7. readonly borderStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string & {}) | (() => string) | ((new (...args: any[]) => string & {}) | (() => string))[], unknown, unknown, "solid", boolean>;
  8. };
  9. export declare type DividerProps = ExtractPropTypes<typeof dividerProps>;
  10. export declare type DividerInstance = InstanceType<typeof Divider>;