Open sylee957 opened 1 year ago
https://codesandbox.io/s/tender-austin-7lxpzx?file=/src/App.tsx
I get (parameter) e: any from
(parameter) e: any
const App = () => { useControls({ test: { value: true, onChange: (e) => console.log(e) } }); return null; };
How can I get the the type of events for onChange?
onChange
https://codesandbox.io/s/tender-austin-7lxpzx?file=/src/App.tsx
I get
(parameter) e: any
fromHow can I get the the type of events for
onChange
?