UNPKG

hy-vue-gantt

Version:

Evolution of vue-ganttastic package

10 lines (9 loc) 332 B
import { type Ref } from "vue"; import type { GanttBarObject } from "../types"; export interface UseTooltipReturn { showTooltip: Ref<boolean>; tooltipBar: Ref<GanttBarObject | undefined>; initTooltip: (bar: GanttBarObject) => void; clearTooltip: () => void; } export declare function useTooltip(): UseTooltipReturn;