Link to the Typescript-Handbook repo instead of the pages on this wiki.

Daniel Rosenwasser 2015-08-29 15:47:24 -07:00
Родитель efb22f2060
Коммит b1456e2196
2 изменённых файлов: 24 добавлений и 23 удалений

25
Home.md

@ -1,12 +1,12 @@
# Getting Started
* [Basic Types] (Basic Types)
* [Interfaces] (Interfaces)
* [Classes] (Classes)
* [Modules] (Modules)
* [Functions] (Functions)
* [Generics] (Generics)
* [Common Errors] (Common Errors)
* [Basic Types](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Basic%20Types.md)
* [Interfaces](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Interfaces.md)
* [Classes](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Classes.md)
* [Namespaces and Modules](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Namespaces%20and%20Modules.md)
* [Functions](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Functions.md)
* [Generics](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Generics.md)
* [Common Errors](Common Errors)
* [[Integrating with Build Tools]]
* [Compiler Options] (Compiler Options)
* [TypeScript Editor Support](TypeScript-Editor-Support)
@ -15,9 +15,10 @@
# Advanced Topics
* [Mixins] (Mixins)
* [Declaration Merging] (Declaration Merging)
* [Type Inference] (Type Inference)
* [Type Compatibility] (Type Compatibility)
* [Writing Definition (.d.ts) Files] (Writing Definition Files)
* [Mixins](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Mixins.md)
* [Declaration Merging](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Declaration%20Merging.md)
* [Type Inference](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Type%20Inference.md)
* [Type Compatibility](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Type%20Compatibility.md)
* [Writing Definition (`.d.ts`) Files](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Writing%20Definition%20Files.md)
* [[JSX]]

@ -1,11 +1,11 @@
**TypeScript Language Basics**
* [[Basic Types]]
* [[Interfaces]]
* [[Classes]]
* [[Modules]]
* [[Functions]]
* [[Generics]]
* [Basic Types](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Basic%20Types.md)
* [Interfaces](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Interfaces.md)
* [Classes](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Classes.md)
* [Namespaces and Modules](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Namespaces%20and%20Modules.md)
* [Functions](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Functions.md)
* [Generics](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Generics.md)
* [[Common Errors]]
* [[Integrating with Build Tools]]
* [[Compiler Options]]
@ -13,12 +13,12 @@
**TypeScript Language Advanced**
* [[Mixins]]
* [[Declaration Merging]]
* [[Type Inference]]
* [[Type Compatibility]]
* [Mixins](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Mixins.md)
* [Declaration Merging](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Declaration%20Merging.md)
* [Type Inference](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Type%20Inference.md)
* [Type Compatibility](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Type%20Compatibility.md)
* [[JSX]]
* [[Writing Definition Files]]
* [Writing Definition Files](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Writing%20Definition%20Files.md)
**News**
* [[What's new in TypeScript]]