A virtual newsroom powered by RSS and AI.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
345 B

// types/express-session.d.ts
// Copyright (C) 2025 DTP Technologies, LLC
// All Rights Reserved
// eslint-disable-next-line
import { SessionData } from "express-session";
declare module "express-session" {
interface SessionData {
captcha: {
[key: string]: string;
};
loginResult?: string;
loginReturnTo?: string;
}
}