3 lines
116 B
TypeScript
3 lines
116 B
TypeScript
declare const useToggle: (initialValue: boolean) => [boolean, (nextValue?: any) => void];
|
|
export default useToggle;
|