import { Role } from'../config/roles'exportinterfaceUserTable {
id: stringname: string | null// null if not available on oauth account linkingemail: stringpassword: string | null// null if user is created via OAuthis_email_verified: booleanrole: Role
}