请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

Interface固定属性

interface FunctionWithAttributes {
    attr: string,
    // ???如果我想写一个固定的函数, 怎么写
    // func:()=>{    }; 
    (str:string):void;  //这是一个函数声明
}
const test: FunctionWithAttributes = (str:string) => {
    console.log("attributes");
}
test.attr = "12";

如果我想通过FunctionWithAttributes 定义的object都有一个固定的func函数应该怎么写

正在回答 回答被采纳积分+3

1回答

Dell 2023-06-09 00:04:04

这个你没法定义,函数只能约定入参和出参,不能直接写死实现

0 回复 有任何疑惑可以回复我~
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信