UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

10 lines (9 loc) 310 B
import type { Setter } from "solid-js"; /** 快速生成针对 boolean 值的操作函数 */ export declare const useBooleanState: (setter: Setter<boolean>, options?: { beforeHide?: () => Promise<void> | void; }) => { toggle: (val?: boolean) => boolean; show(): void; hide(): Promise<void>; };