美文网首页
TypeScript函数构造签名

TypeScript函数构造签名

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

    TypeScript函数构造签名

    class Ctor {
        name: string
        constructor(s: string) {
            this.name = s
        }
    }
    
    type SomeContructor = {
        new (s: string): Ctor
    }
    
    function fn(ctor: SomeContructor) {
        return new ctor('zhangsan.')
    }
    
    const f = fn(Ctor)
    

    相关文章

      网友评论

          本文标题:TypeScript函数构造签名

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