一个常规的 function 在 TS 代码中:

function example(a: number, b: number) {
    return a + b
}

同样 arguments 的类型也有强制要求;

Arrow Function 也是如此:

const example = (a: number, b: number) => (
  a + b
);

Milo
7 声望3 粉丝

to yound to simple.