leva
leva copied to clipboard
`onChange` has no type inferred
https://codesandbox.io/s/tender-austin-7lxpzx?file=/src/App.tsx
I get (parameter) e: any
from
const App = () => {
useControls({
test: {
value: true,
onChange: (e) => console.log(e)
}
});
return null;
};
How can I get the the type of events for onChange
?