美文网首页
TypeScript函数调用签名

TypeScript函数调用签名

作者: 我的袜子都是洞 | 来源:发表于2023-01-24 23:06 被阅读0次

    TypeScript函数调用签名

    函数在本质是一个对象,但特殊地方在于函数是可调用的对象。因此,可以使用对象类型来表示函数类型。

    type DescribableFunction = {
        description: string; // 给函数绑定一个属性
        (someArg: number): boolean;
    }
    
    type DescriptionFunction = {
        description: string;
        (someArg: number): boolean;
    }
    
    function doSomething(fn: DescriptionFunction) {
        console.log(fn.description + 'returned' + fn(12345))
    }
    
    function fn1(n: number): boolean {
        console.log(n)
        return true
    }
    
    fn1.description = 'hello '
    
    doSomething(fn1)
    

    相关文章

      网友评论

          本文标题:TypeScript函数调用签名

          本文链接:https://www.haomeiwen.com/subject/hgmgfdtx.html