import { Role, Status } from "./enums"; import { Transaction } from "./Transaction"; import { Company } from "./Company"; export interface User { id: number; first_name: string; last_name: string; email_address: string; password_hash: string; role: Role; date_created: Date; last_login?: Date; status: Status; preferences_id: number; profile_picture_url?: string; created_transactions: Transaction[]; updated_transactions: Transaction[]; admin_companies: Company[]; }