The SvelteKit documentation gives an example for how to write GET endpoints with parameters...
export async function get({ params }) { /* [...] */ }
...and how to write POST endpoints without parameters...
export function post(request) { /* [...] */ }
How do I write POST endpoints with parameters? More precisely: What is the function signature that I have to use if I want to access both the parameters and the request body in my endpoint?