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