interface User { email: string id: number first_name: string last_name: string password_hash: string } export default User;