@zag-js/radio-group
Version:
Core logic for the radio group widget implemented as a state machine
8 lines (5 loc) • 303 B
text/typescript
import { PropTypes, NormalizeProps } from '@zag-js/types';
import { RadioGroupService, RadioGroupApi } from './radio-group.types.mjs';
import '@zag-js/core';
declare function connect<T extends PropTypes>(service: RadioGroupService, normalize: NormalizeProps<T>): RadioGroupApi<T>;
export { connect };