working on words

This commit is contained in:
2024-12-29 12:04:19 +01:00
parent de8b4c5000
commit 933fe2635b
19 changed files with 182 additions and 46 deletions
+12
View File
@@ -0,0 +1,12 @@
import { User } from '../users/entities/user.entity';
declare module 'express-session' {
interface SessionData {
user: User;
tokenData: {
access_token: string;
token_type: string;
refresh_token: string;
expires: Date;
};
}
}