import type { Settings } from './settings'; export interface User { id?: number; user: string; email: string; role: string; expiration?: string; password?: string; settings?: Settings; } export type Users = User[];