UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 386 B
import { type CollectionOptions, ListCollection } from '@zag-js/collection'; import type { Accessor } from './types.js'; export interface CreateListCollectionOptions<T> extends CollectionOptions<T> { } export declare function createListCollection<T>(options: CreateListCollectionOptions<T> | Accessor<CreateListCollectionOptions<T>>): ListCollection<T>; export type { ListCollection };