-
Notifications
You must be signed in to change notification settings - Fork 461
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added guide typescript #1732
added guide typescript #1732
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Me parece genial. Cuando todos los cambios estan hecho, podemos generar uno en portugues.
esto ya lo veo bien, generamos la versión en portugués? @unjust @jmontes50 @GenesisMauries |
@jmontes50 pidamos revisión del equipo de BR, por favor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
listo!
guides/typescript/README.md
Outdated
edad: number; | ||
}; | ||
|
||
// Error: 'rol' no existe en el tipo 'Persona' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
en el ejemplo no ocurre un error..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Creo que se refiere a que en el tipo persona no existe el cargo:
type Pessoa = {
nome: string;
idade: number;
};
No estoy seguro, yo lo veo bien o me estoy equivocando? @moniyama @GenesisMauries , esto no lo toco
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Se ha corregido a esto, también en la versión en español
type Pessoa = {
nome: string;
idade: number;
};
//Tenta-se adicionar 'rol' à 'Pessoa', mas ocorre um erro.
Pessoa.rol = string;
> diferenças e escolher a abordagem que melhor atende | ||
> aos requisitos do código. | ||
|
||
## Boas práticas |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
esta parte del README está distinta del español
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Si esta distinta @GenesisMauries, podríamos revisarlo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
corregido! si habia diferencias gracias :D @moniyama
integração do TypeScript com ferramentas de build como o Webpack e IDEs | ||
como o Visual Studio Code para melhorar a eficiência do desenvolvimento. | ||
|
||
## Próximos passos |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
esta parte também está distinta.. eres com links y documentaciones (algunas en español)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
corregido! si habia diferencias :D @moniyama
conceitos em projetos reais e participar de comunidades online para | ||
trocar experiências e aprender com outros desenvolvedores. | ||
|
||
## Conclusão |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
esta parte del README está distinta del español
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
corregido! si habia diferencias :D @moniyama
…o en ambas versiones
Se ha añadido la guía creada por Genesis y Carlos acerca de TS, la añado como draft