export a type

function User(name, email) {
this.name = name;
this.email = email;
}
module.exports = User;

Add your comment