e99b7aa01e580db59fa52178982532af5b3eabd27aecde01b5b3a1f84824b931568222f05d78de8a8217610e164464f637dd631170789394df3fd8ed96b2e9 955 B

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