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

    TypeScript 1.3 受保护的 元组类型 TypeScript 1.3 受保护的 类里面新的protected 修饰符作用与其它语言如C++,C#和Java中的一样。一个类的protected 成员只在这个类的子类中可见: class Thing { protected doSomething () { ...
  • TypeScript 2.7

    Constant-named properties Example Example unique symbol Example Example Strict Class Initialization Definite Assignment Assertions Example Fixed Length Tuples Improved t...
  • TypeScript 1.6

    TypeScript 1.6 严格的对象字面量赋值检查 CommonJS的模块解析不再假设路径为相对的 函数和类声明为默认导出时不再能够与在意义上有交叉的同名实体进行合并 模块体以严格模式解析 标准库里DOM API的改动 系统模块输出使用批量导出 npm包的.js内容从’bin’移到了’lib’ TypeScript的npm包不会默认全局安装...
  • TypeScript 1.8

    TypeScript 1.8 现在生成模块代码时会带有"use strict"; 头 从模块里导出非局部名称 默认启用代码可达性(Reachability)检查 --module 不允许与--outFile 一起出现,除非 --module 被指定为amd 或system 标准库里的DOM API变动 在super-call之前不允许使用this...
  • TypeScript 2.0

    TypeScript 2.0 对函数或类表达式的捕获变量不进行类型细化(narrowing) 泛型参数会进行类型细化 只有get而没有set的存取器会被自动推断为readonly 属性 在严格模式下函数声明不允许出现在块(block)里 TemplateStringsArray 现是是不可变的 TypeScript 2.0 完整的破坏性改动...
  • TypeScript 2.2

    TypeScript 2.2 标准库里的DOM API变动 TypeScript 2.2 完整的破坏性改动列表请到这里查看:breaking change issues . 标准库里的DOM API变动 现在标准库里有Window.fetch 的声明;仍依赖于@types\whatwg-fetch 会产生声明冲突错误,需要被移除。 现在标准...
  • TypeScript 2.8

    TypeScript 2.8 在--noUnusedParameters 下检查未使用的类型参数 从lib.d.ts 中删除了一些Microsoft 专用的类型 HTMLObjectElement 不再具有alt 属性 TypeScript 2.8 在--noUnusedParameters 下检查未使用的类型参数 根据 #20568 ,未...
  • TypeScript 3.2

    strictBindCallApply Caveats Generic spread expressions in object literals Generic object rest variables and parameters BigInt Caveats Non-unit types as union discriminants ...
  • TypeScript 3.4

    TypeScript 3.4 顶级 this 现在有类型了 泛型参数的传递 上下文返回类型作为上下文参数类型传入 在 strictFunctionTypes 之外一致性推断优先 参考 TypeScript 3.4 顶级 this 现在有类型了 顶级 this 的类型现在被分配为 typeof globalThis 而不是 an...
  • TypeScript 2.5

    TypeScript 2.5 可选的catch 语句变量 checkJs /@ts-check 模式中的类型断言/转换语法 包去重和重定向 --preserveSymlinks (保留符号链接)编译器选项 TypeScript 2.5 可选的catch 语句变量 得益于@tinganho 所做的工作,TypeScript 2.5实现了一...