UNPKG

@kobalte/core

Version:

Unstyled components and primitives for building accessible web apps and design systems with SolidJS.

9 lines (6 loc) 266 B
import { Setter } from 'solid-js'; /** * Create a function that call the setter with an id and return a function to reset it. */ declare function createRegisterId(setter: Setter<string | undefined>): (id: string) => () => undefined; export { createRegisterId };