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