Hi folks!
How can I define the locals typings in my app?
In the middleware, I'm trying to set a "session" in the locals object, but I get this error:
Property 'session' does not exist on type 'Locals'
Looking at Astro's typings, "Locals" is defined in the App.Locals as we can see in the code bellow:
/**
* Object accessed via Astro middleware
*/
locals: App.Locals;
How do I overwrite this type?
