(()=>{ //定义一个函数约束 interface IFunc{ //括号里为函数参数类型 //括号外为函数返回值类型 (name:string,age:number):boolean } //具体函数 const myFunc=function(name:string,age:number):boolean{ return age<18; } //调用函数 let res=myFunc('小甜甜',16) console.log(res) })()