/**
* This is the idiomatic, intended way of adding fields to the session
*/declaremodule"express-session" {
interfaceSessionData {
returnTo?: string;
}
}
// This export needs to be here to make this file be a module. It serves no other purpose. It can be anything.export {};