UNPKG

@zag-js/tabs

Version:

Core logic for the tabs widget implemented as a state machine

8 lines (5 loc) 295 B
import { Service } from '@zag-js/core'; import { PropTypes, NormalizeProps } from '@zag-js/types'; import { TabsSchema, TabsApi } from './tabs.types.js'; declare function connect<T extends PropTypes>(service: Service<TabsSchema>, normalize: NormalizeProps<T>): TabsApi<T>; export { connect };