'types' can only be used in a .ts file.ts(801 code example
Example: type annotations can only be used in typescript files.ts(8010)
// @ts-check
module.exports = {
someMethod: (param: string): string => {
return param;
},
};
// @ts-check
module.exports = {
someMethod: (param: string): string => {
return param;
},
};