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.
21 lines
999 B
21 lines
999 B
import type { ExtractPropTypes } from 'vue';
|
|
declare type StateUpdater = (state: boolean) => void;
|
|
export declare const tooltipV2RootProps: {
|
|
readonly delayDuration: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 300, boolean>;
|
|
readonly defaultOpen: BooleanConstructor;
|
|
readonly open: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
readonly onOpenChange: {
|
|
readonly type: import("vue").PropType<StateUpdater>;
|
|
readonly required: false;
|
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
__epPropKey: true;
|
|
};
|
|
readonly 'onUpdate:open': {
|
|
readonly type: import("vue").PropType<StateUpdater>;
|
|
readonly required: false;
|
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
__epPropKey: true;
|
|
};
|
|
};
|
|
export declare type TooltipV2RootProps = ExtractPropTypes<typeof tooltipV2RootProps>;
|
|
export {};
|
|
|