@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
36 lines (35 loc) • 1.18 kB
TypeScript
import type { ExtractPublicPropTypes, PropType } from 'vue';
import { type Placement } from 'floating-vue';
declare const tooltipProps: {
tooltip: StringConstructor;
placement: {
type: PropType<Placement>;
default: string;
};
};
export type PopoverPlacement = Placement;
export type TooltipProps = ExtractPublicPropTypes<typeof tooltipProps>;
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
tooltip: StringConstructor;
placement: {
type: PropType<Placement>;
default: string;
};
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
tooltip: StringConstructor;
placement: {
type: PropType<Placement>;
default: string;
};
}>> & Readonly<{}>, {
placement: Placement;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
default?(_: {}): any;
tooltip?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};