Exportação de modelo de classe NodeJS
module.exports = class Person
{
constructor()
{
this.type = "Person";
}
}
PerryGamerPT
module.exports = class Person
{
constructor()
{
this.type = "Person";
}
}