function scrollhandl(e:Event,flag:any){
console.log(e);
console.log(flag);
}
我不知道参数有多少个(基本的参数大家都知道),它在 TypeScript
中的类型也不知道
另外我也有可能这个函数的参数类型是错的
function scrollhandl(e:Event,flag:any){
console.log(e);
console.log(flag);
}
我不知道参数有多少个(基本的参数大家都知道),它在 TypeScript
中的类型也不知道
另外我也有可能这个函数的参数类型是错的