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