我知道类型或界面可用于智能感知功能参数或内联@type
。但是有没有办法使用类型/接口来为整个函数或对象文字提供智能感知?例如:
type TFunc = ( x: number ) => boolean;
/**
* @implements {TFunc}
*/
function isNumber ( x ) {
return typeof x === 'number';
}
@implements
无效。我想知道这是否可以用另一种方式完成?
答案 0 :(得分:0)
我会说:
使用@type
而不是@implements