Initial commit - QR Master application
This commit is contained in:
13
src/types/next-auth.d.ts
vendored
Normal file
13
src/types/next-auth.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { DefaultSession } from 'next-auth';
|
||||
|
||||
declare module 'next-auth' {
|
||||
interface Session {
|
||||
user: {
|
||||
id: string;
|
||||
} & DefaultSession['user'];
|
||||
}
|
||||
|
||||
interface User {
|
||||
id: string;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user