@zag-js/tour
Version:
Core logic for the tour widget implemented as a state machine
11 lines (8 loc) • 354 B
text/typescript
import { PropTypes, NormalizeProps } from '@zag-js/types';
import { TourService, TourApi } from './tour.types.mjs';
import '@zag-js/core';
import '@zag-js/dismissable';
import '@zag-js/popper';
import './utils/rect.mjs';
declare function connect<T extends PropTypes>(service: TourService, normalize: NormalizeProps<T>): TourApi<T>;
export { connect };