UNPKG

ahooks-v2

Version:
7 lines (6 loc) 211 B
export interface Actions { setTrue: () => void; setFalse: () => void; toggle: (value?: boolean | undefined) => void; } export default function useBoolean(defaultValue?: boolean): [boolean, Actions];