mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
3 lines
141 B
TypeScript
3 lines
141 B
TypeScript
declare const useGetSetState: <T extends object>(initialState?: T) => [() => T, (patch: Partial<T>) => void];
|
|
export default useGetSetState;
|