various-ui
Version:
This is a test version of the Vue 3 component library
36 lines (35 loc) • 1.01 kB
TypeScript
import { ExtractPropTypes } from "vue";
export declare const UiTooltipFollowPropsOption: {
readonly classExtraName: {
readonly type: StringConstructor;
};
readonly disabled: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly content: {
readonly type: StringConstructor;
};
readonly offsetX: {
readonly type: NumberConstructor;
readonly default: 20;
};
readonly offsetY: {
readonly type: NumberConstructor;
readonly default: 20;
};
readonly zIndex: {
readonly type: NumberConstructor;
readonly default: 66;
};
readonly width: {
readonly type: NumberConstructor;
};
};
export type UiTooltipFollowProps = ExtractPropTypes<typeof UiTooltipFollowPropsOption>;
export declare const UiTooltipFollowEmits: {
"before-enter": () => boolean;
"before-leave": () => boolean;
"after-enter": () => boolean;
"after-leave": () => boolean;
};