机智超短裙

文章
4
资源
0
加入时间
2年10月24天

ts函数定义方式

let fn1:{():number}=function():number{return 1}//使用带有调用签名的对象字面量来定义函数let fn2:()=>number=function():number{return 1}