various-ui
Version:
This is a test version of the Vue 3 component library
35 lines (34 loc) • 995 B
TypeScript
import type { PropType, ExtractPropTypes } from "vue";
export declare const UiTooltipFunctionPropsOption: {
readonly classExtraName: {
readonly type: StringConstructor;
};
readonly trigger: {
readonly type: PropType<"none">;
};
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 UiTooltipFunctionProps = ExtractPropTypes<typeof UiTooltipFunctionPropsOption>;
export declare const UiTooltipFunctionEmits: {
"before-enter": () => boolean;
"before-leave": () => boolean;
"after-enter": () => boolean;
"after-leave": () => boolean;
};