UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

7 lines (6 loc) 327 B
import * as asyncList from '@zag-js/async-list'; export interface UseAsyncListProps<T, C = string> extends asyncList.Props<T, C> { } export interface UseAsyncListReturn<T, C = string> extends asyncList.Api<T, C> { } export declare function useAsyncList<T, C = string>(props: UseAsyncListProps<T, C>): UseAsyncListReturn<T, C>;