-
Notifications
You must be signed in to change notification settings - Fork 17
typescript
Hanlei Qin edited this page Jan 7, 2022
·
19 revisions
TypeScript :
JavaScript that scales.
TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
Any browser. Any host. Any OS. Open source.
- Official Documentation
- 🌟TypeScript Handbook - zh-CN
- TypeScript Deep Dive - read online, 深入理解 TypeScript - 在线阅读
- TypeScript 入门教程 - 在线阅读
The repository for high quality TypeScript type definitions. http://definitelytyped.org/
- TypeScript 类型系统 - @types
-
Microsoft/TypeSearch A web-based search for @types/* packages.
When using TypeScript an easy way to install library Type Definitions is using "@types" npm packages.
View the running site: http://microsoft.github.io/TypeSearch.
- ts-migrate is a tool for helping migrate code to TypeScript. It takes a JavaScript, or a partial TypeScript, project in and gives a compiling TypeScript project out.
- tsconfig.json 全解析
-
Modules
- 旧术语
-
A note about terminology: It’s important to note that in TypeScript 1.5, the nomenclature has changed. “Internal modules” are now “namespaces”. “External modules” are now simply “modules”, as to align with ECMAScript 2015’s terminology, (namely that
module X {
is equivalent to the now-preferrednamespace X {
). - 在早期还没有 ES6 的时候,ts 提供了一种模块化方案,使用 module 关键字表示内部模块。
- 但由于后来 ES6 也使用了 module 关键字,ts 为了兼容 ES6,使用 namespace 替代了自己的 module,更名为命名空间。
-
A note about terminology: It’s important to note that in TypeScript 1.5, the nomenclature has changed. “Internal modules” are now “namespaces”. “External modules” are now simply “modules”, as to align with ECMAScript 2015’s terminology, (namely that
- 旧术语
-
Namespaces
-
namespace
是 ts 早期时为了解决模块化而创造的关键字,中文称为命名空间。 - 随着 ES6 的广泛应用,现在已经不建议再使用 ts 中的 namespace,而推荐使用 ES6 的模块化方案了,故我们不再需要学习 namespace 的使用了。
- namespace 被淘汰了,但是在声明文件中,declare namespace 还是比较常用的,它用来表示全局变量是一个对象,包含很多子属性。
- declare namespace
-
-
Namespaces and Modules
- 从
ECMAScript 2015
(ES6) 开始,模块成为了语言内置的部分,应该会被所有正常的解释引擎所支持。 - 因此,对于新项目来说推荐使用模块做为组织代码的方式。
- 从
- npm 包
-
How to Iterate Over String Indexed Array In TypeScript?
for (const key in indexedObject) { const val = indexedObject[key]; // Use it... }
芝士就是力量,法国就是培根!
Knowledge is power -- Francis Bacon
人要是没有梦想,和咸鱼有什么分别?光标请勿在最高司令官身上停留!
- mathematics
- algorithm
- theory-of-computation
- compiler
- operating-system
- networks
- security
- artificial-intelligence
- computer-graphics