I don´t know how to explain it exact. I saw in webstorm has something like this
set(nbObstacles, nbWeapons, nbPlayers){
this.setTiles();
this.setElements(type: "obstacle", nbObstacles);
this.setElements(type: "gun", nbWeapons);
setInterval(handler: () => {
this.draw();
}, timeOut: 1000 / 50)
type:handler and timeOut
are information shown by webstorm. I would like to have the same on Visual studio code.
Someone knows if. Is there any plugin to could show the same like webstorm?