UNPKG

@zag-js/tooltip

Version:

Core logic for the tooltip widget implemented as a state machine

9 lines (6 loc) 336 B
import { Service } from '@zag-js/core'; import { PropTypes, NormalizeProps } from '@zag-js/types'; import { TooltipSchema, TooltipApi } from './tooltip.types.mjs'; import '@zag-js/popper'; declare function connect<P extends PropTypes>(service: Service<TooltipSchema>, normalize: NormalizeProps<P>): TooltipApi<P>; export { connect };