export type SelectUser = typeof user.$inferSelect;
type SelectUser = {
id: string;
name: string;
email: string;
emailVerified: boolean;
image: string | null;
createdAt: Date;
updatedAt: Date;
role: string | null;
banned: boolean | null;
banReason: string | null;
banExpires: Date | null;
usid: string | null;
}
export type SelectUser = typeof user.$inferSelect;
type SelectUser = {
id: string;
name: string;
email: string;
emailVerified: boolean;
image: string | null;
createdAt: Date;
updatedAt: Date;
role: string | null;
banned: boolean | null;
banReason: string | null;
banExpires: Date | null;
usid: string | null;
}