comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
16 lines (14 loc) • 463 B
TypeScript
import { ExtractDefaultPropTypes, PropType } from 'vue';
import { Placement } from '@floating-ui/vue';
export declare const tooltipProps: {
readonly content: StringConstructor;
readonly placement: {
readonly type: PropType<Placement>;
readonly default: "top";
};
readonly triggerRef: {
new (): HTMLElement;
prototype: HTMLElement;
};
};
export type TooltipProps = ExtractDefaultPropTypes<typeof tooltipProps>;