I checked here https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md which is the TypeScript Language Specifications but I couldn\'t see one thing that how I can d
Return types using arrow notation is the same as previous answers:
const sum = (a: number, b: number) : number => a + b;