Hey I'm using tauri and I had a doubt regarding the ipc data passed between rust and ts.
So the data passed by rust is in snake_case. However it feels wrong to write snake_case in ts. So I wrote a function to convert snake_case to camelCase. However ts complains about the types that I used and there is always a swiggly line over the function when called (I'm an ametuer in ts, just learning).
How did you guys deal with the case conversion issue?