refactor: eslint and prettier conflict will be resolved and formatted

This commit is contained in:
Enes Köksal
2026-04-23 17:05:43 +03:00
parent 385b61f29b
commit 3cfea40fbd
219 changed files with 16638 additions and 13663 deletions
+12 -12
View File
@@ -1,20 +1,20 @@
import { type DefaultSession } from 'next-auth';
declare module 'next-auth' {
interface Session {
user: {
id: string;
isAdmin: boolean;
} & DefaultSession['user'];
}
interface Session {
user: {
id: string;
isAdmin: boolean;
} & DefaultSession['user'];
}
interface User {
isAdmin?: boolean;
}
interface User {
isAdmin?: boolean;
}
}
declare module 'next-auth/jwt' {
interface JWT {
isAdmin?: boolean;
}
interface JWT {
isAdmin?: boolean;
}
}