Tentukan tipe parameter di javascript vscode

/**
 * @param {String} param1
 * */
function x(param1) {
  return param1 + "123";
}
Pixel Freak