You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
1011 B
16 lines
1011 B
|
2 years ago
|
import type { ExtractPropTypes } from 'vue';
|
||
|
|
import type Arrow from './arrow.vue';
|
||
|
|
export declare const popperArrowProps: {
|
||
|
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
||
|
|
};
|
||
|
|
export declare type PopperArrowProps = ExtractPropTypes<typeof popperArrowProps>;
|
||
|
|
export declare type PopperArrowInstance = InstanceType<typeof Arrow>;
|
||
|
|
/** @deprecated use `popperArrowProps` instead, and it will be deprecated in the next major version */
|
||
|
|
export declare const usePopperArrowProps: {
|
||
|
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
||
|
|
};
|
||
|
|
/** @deprecated use `PopperArrowProps` instead, and it will be deprecated in the next major version */
|
||
|
|
export declare type UsePopperArrowProps = PopperArrowProps;
|
||
|
|
/** @deprecated use `PopperArrowInstance` instead, and it will be deprecated in the next major version */
|
||
|
|
export declare type ElPopperArrowInstance = PopperArrowInstance;
|