书栈网 · BookStack 本次搜索耗时 0.031 秒,为您找到 7962 个相关结果.
  • TypeScript 2.6

    TypeScript 2.6 只写引用未使用 环境上下文中的导出赋值中禁止使用任意表达式 TypeScript 2.6 完整的破坏性改动列表请到这里查看:breaking change issues . 只写引用未使用 以下代码用于没有编译错误: function f ( n : number ) { n = 0...
  • TypeScript 2.3

    TypeScript 2.3 空的泛型列表会被标记为错误 TypeScript 2.3 完整的破坏性改动列表请到这里查看:breaking change issues . 空的泛型列表会被标记为错误 示例 class X <> {} // Error: Type parameter list cannot be empty. ...
  • TypeScript 1.7

    TypeScript 1.7 从this 中推断类型发生了变化 类成员修饰符后面会自动插入分号 TypeScript 1.7 完整的破坏性改动列表请到这里查看:breaking change issues 。 从this 中推断类型发生了变化 在类里,this 值的类型将被推断成this 类型。这意味着随后使用原始类型赋值时可能会发生错误。...
  • TypeScript 1.7

    async/await support in ES6 targets (Node v4+) Example Support for —target ES6 with —module Example this-typing ES7 exponentiation operator Example Improved checking for dest...
  • TypeScript 1.8

    Type parameters as constraints Example Control flow analysis errors Unreachable code Example Unused labels Example Implicit returns Example Case clause fall-throughs Examp...
  • TypeScript 2.6

    Strict function types Example Note Cache tagged template objects in modules Example Localized diagnostics on the command line Example Suppress errors in .ts files using ‘// ...
  • TypeScript 2.8

    Conditional Types Example Distributive conditional types Example Example Example Type inference in conditional types Predefined conditional types Example Improved control ...
  • TypeScript 3.3

    Improved behavior for calling union types Caveats Incremental file watching for composite projects in —build —watch Improved behavior for calling union types In prior version...
  • TypeScript 3.5

    TypeScript 3.5 改进速度 类型检查速度提升 改进 --incremental Omit 辅助类型 改进了联合类型中多余属性的检查 --allowUmdGlobalAccess 标志 更智能的联合类型检查 泛型构造函数的高阶类型推断 参考 TypeScript 3.5 改进速度 TypeScript 3.5 为...
  • TypeScript 3.3

    TypeScript 3.3 改进调用联合类型时的行为 警告 在合复合工程中增量地检测文件的变化 --build --watch TypeScript 3.3 改进调用联合类型时的行为 在 TypeScript 之前的版本中,将可调用类型联合后仅在它们具有相同的参数列表时才能被调用。 type Fruit = "apple" ...