代码之家  ›  专栏  ›  技术社区  ›  techguy2000

除了使用

  •  0
  • techguy2000  · 技术社区  · 5 年前

    在这个typescript修饰符中,我可以使用

    typeof IceCreamComponent
    

    但如果我想采用更通用的类型呢?我想说任何对象或任何类。

    每个typescript类都实现一个超级类吗?

    enter image description here

    这似乎有效,是正确的方法吗?:

    function Frozen<T extends object>(constructor: new () => T) {
      Object.freeze(constructor);
      Object.freeze(constructor.prototype);
    }
    

    任何关于如何使它更安全的提示将非常感谢。

    0 回复  |  直到 5 年前