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