Skip to content

Commit

Permalink
refactor: structure
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongsp committed Feb 12, 2021
1 parent 06c116e commit 0165a94
Show file tree
Hide file tree
Showing 144 changed files with 114 additions and 118 deletions.
232 changes: 114 additions & 118 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,129 +8,125 @@

:heavy_check_mark: TypeScript语言用于大规模应用的JavaScript开发。 :heavy_check_mark: TypeScript支持类型,是JavaScript的超集且可以编译成纯JavaScript代码。 :heavy_check_mark: TypeScript兼容所有浏览器,所有宿主环境,所有操作系统。 :heavy_check_mark: TypeScript是开源的。

<!-- :book: [在GitBook网站上阅读本手册](https://app.gitbook.com/@zhongsp/s/typescript-handbook/) :new: -->

:link: [一大波新的快速开始指南:React,Angular,Nodejs,ASP.NET Core,React Native,Vue,Glimmer,WeChat,Dojo2,Knockout等](./doc/quick-start/README.md)

<img src="./misc/reward.jpg" alt="Reward the Author" width="300px" height="300px" style="vertical-align: bottom;"> 如果觉得不错可以微信打赏哟 <3
<img src="./misc/reward.jpg" alt="Reward the Author" width="200px" height="200px" style="vertical-align: bottom;"> 如果觉得不错可以微信打赏哟 <3

## 目录

* [快速上手](tutorials/README.md)
* [5分钟了解TypeScript](tutorials/typescript-in-5-minutes.md)
* [ASP.NET Core](tutorials/asp.net-core.md)
* [ASP.NET 4](tutorials/asp.net-4.md)
* [Gulp](tutorials/gulp.md)
* [Knockout.js](tutorials/knockout.md)
* [React与webpack](tutorials/react-and-webpack.md)
* [React](tutorials/react.md)
* [Angular 2](tutorials/angular-2.md)
* [从JavaScript迁移到TypeScript](tutorials/migrating-from-javascript.md)
* [手册](handbook/README.md)
* [基础类型](handbook/basic-types.md)
* [接口](handbook/interfaces.md)
* [函数](handbook/functions.md)
* [字面量类型](handbook/literal-types.md)
* [快速上手](zh/tutorials/README.md)
* [5分钟了解TypeScript](zh/tutorials/typescript-in-5-minutes.md)
* [ASP.NET Core](zh/tutorials/asp.net-core.md)
* [ASP.NET 4](zh/tutorials/asp.net-4.md)
* [Gulp](zh/tutorials/gulp.md)
* [Knockout.js](zh/tutorials/knockout.md)
* [React与webpack](zh/tutorials/react-and-webpack.md)
* [React](zh/tutorials/react.md)
* [Angular 2](zh/tutorials/angular-2.md)
* [从JavaScript迁移到TypeScript](zh/tutorials/migrating-from-javascript.md)
* [手册](zh/handbook/README.md)
* [基础类型](zh/handbook/basic-types.md)
* [接口](zh/handbook/interfaces.md)
* [函数](zh/handbook/functions.md)
* [字面量类型](zh/handbook/literal-types.md)
* _@todo 联合类型和交叉类型_
* [](handbook/classes.md)
* [枚举](handbook/enums.md)
* [泛型](handbook/generics.md)
* [手册(进阶)](reference/README.md)
* [高级类型](reference/advanced-types.md)
* [实用工具类型](reference/utility-types.md)
* [Decorators](reference/decorators.md)
* [声明合并](reference/declaration-merging.md)
* [Iterators 和 Generators](reference/iterators-and-generators.md)
* [JSX](reference/jsx.md)
* [混入](reference/mixins.md)
* [模块](reference/modules.md)
* [模块解析](reference/module-resolution.md)
* [命名空间](reference/namespaces.md)
* [命名空间和模块](reference/namespaces-and-modules.md)
* [Symbols](reference/symbols.md)
* [三斜线指令](reference/triple-slash-directives.md)
* [类型兼容性](reference/type-compatibility.md)
* [类型推论](reference/type-inference.md)
* [变量声明](reference/variable-declarations.md)
* [如何书写声明文件](declaration-files/README.md)
* [介绍](declaration-files/introduction.md)
* [库结构](declaration-files/library-structures.md)
* [举例](declaration-files/by-example.md)
* [最佳实践](declaration-files/do-s-and-don-ts.md)
* [深入](declaration-files/deep-dive.md)
* [模板](declaration-files/templates.md)
* [发布](declaration-files/publishing.md)
* [使用](declaration-files/consumption.md)
* [](zh/handbook/classes.md)
* [枚举](zh/handbook/enums.md)
* [泛型](zh/handbook/generics.md)
* [手册(进阶)](zh/reference/README.md)
* [高级类型](zh/reference/advanced-types.md)
* [实用工具类型](zh/reference/utility-types.md)
* [Decorators](zh/reference/decorators.md)
* [声明合并](zh/reference/declaration-merging.md)
* [Iterators 和 Generators](zh/reference/iterators-and-generators.md)
* [JSX](zh/reference/jsx.md)
* [混入](zh/reference/mixins.md)
* [模块](zh/reference/modules.md)
* [模块解析](zh/reference/module-resolution.md)
* [命名空间](zh/reference/namespaces.md)
* [命名空间和模块](zh/reference/namespaces-and-modules.md)
* [Symbols](zh/reference/symbols.md)
* [三斜线指令](zh/reference/triple-slash-directives.md)
* [类型兼容性](zh/reference/type-compatibility.md)
* [类型推论](zh/reference/type-inference.md)
* [变量声明](zh/reference/variable-declarations.md)
* [如何书写声明文件](zh/declaration-files/README.md)
* [介绍](zh/declaration-files/introduction.md)
* [库结构](zh/declaration-files/library-structures.md)
* [举例](zh/declaration-files/by-example.md)
* [最佳实践](zh/declaration-files/do-s-and-don-ts.md)
* [深入](zh/declaration-files/deep-dive.md)
* [模板](zh/declaration-files/templates.md)
* [发布](zh/declaration-files/publishing.md)
* [使用](zh/declaration-files/consumption.md)
* JavaScript
* [JavaScript文件里的类型检查](javascript/type-checking-javascript-files.md)
* [工程配置](project-config/README.md)
* [tsconfig.json](project-config/tsconfig.json.md)
* [工程引用](project-config/project-references.md)
* [NPM包的类型](project-config/typings-for-npm-packages.md)
* [编译选项](project-config/compiler-options.md)
* [配置 Watch](project-config/configuring-watch.md)
* [在MSBuild里使用编译选项](project-config/compiler-options-in-msbuild.md)
* [与其它构建工具整合](project-config/integrating-with-build-tools.md)
* [使用TypeScript的每日构建版本](project-config/nightly-builds.md)
* [Wiki](wiki/README.md)
* [TypeScript里的this](wiki/this-in-typescript.md)
* [编码规范](wiki/coding_guidelines.md)
* [常见编译错误](wiki/common-errors.md)
* [支持TypeScript的编辑器](wiki/typescript-editor-support.md)
* [结合ASP.NET v5使用TypeScript](wiki/using-typescript-with-asp.net-5.md)
* [架构概述](wiki/architectural-overview.md)
* [发展路线图](wiki/roadmap.md)
* [新增功能](release-notes/README.md)
* [TypeScript 4.1](release-notes/typescript-4.1.md)
* [TypeScript 4.0](release-notes/typescript-4.0.md)
* [TypeScript 3.9](release-notes/typescript-3.9.md)
* [TypeScript 3.8](release-notes/typescript-3.8.md)
* [TypeScript 3.7](release-notes/typescript-3.7.md)
* [TypeScript 3.6](release-notes/typescript-3.6.md)
* [TypeScript 3.5](release-notes/typescript-3.5.md)
* [TypeScript 3.4](release-notes/typescript-3.4.md)
* [TypeScript 3.3](release-notes/typescript-3.3.md)
* [TypeScript 3.2](release-notes/typescript-3.2.md)
* [TypeScript 3.1](release-notes/typescript-3.1.md)
* [TypeScript 3.0](release-notes/typescript-3.0.md)
* [TypeScript 2.9](release-notes/typescript-2.9.md)
* [TypeScript 2.8](release-notes/typescript-2.8.md)
* [TypeScript 2.7](release-notes/typescript-2.7.md)
* [TypeScript 2.6](release-notes/typescript-2.6.md)
* [TypeScript 2.5](release-notes/typescript-2.5.md)
* [TypeScript 2.4](release-notes/typescript-2.4.md)
* [TypeScript 2.3](release-notes/typescript-2.3.md)
* [TypeScript 2.2](release-notes/typescript-2.2.md)
* [TypeScript 2.1](release-notes/typescript-2.1.md)
* [TypeScript 2.0](release-notes/typescript-2.0.md)
* [TypeScript 1.8](release-notes/typescript-1.8.md)
* [TypeScript 1.7](release-notes/typescript-1.7.md)
* [TypeScript 1.6](release-notes/typescript-1.6.md)
* [TypeScript 1.5](release-notes/typescript-1.5.md)
* [TypeScript 1.4](release-notes/typescript-1.4.md)
* [TypeScript 1.3](release-notes/typescript-1.3.md)
* [TypeScript 1.1](release-notes/typescript-1.1.md)
* [Breaking Changes](breaking-changes/README.md)
* [TypeScript 3.6](breaking-changes/typescript-3.6.md)
* [TypeScript 3.5](breaking-changes/typescript-3.5.md)
* [TypeScript 3.4](breaking-changes/typescript-3.4.md)
* [TypeScript 3.2](breaking-changes/typescript-3.2.md)
* [TypeScript 3.1](breaking-changes/typescript-3.1.md)
* [TypeScript 3.0](breaking-changes/typescript-3.0.md)
* [TypeScript 2.9](breaking-changes/typescript-2.9.md)
* [TypeScript 2.8](breaking-changes/typescript-2.8.md)
* [TypeScript 2.7](breaking-changes/typescript-2.7.md)
* [TypeScript 2.6](breaking-changes/typescript-2.6.md)
* [TypeScript 2.4](breaking-changes/typescript-2.4.md)
* [TypeScript 2.3](breaking-changes/typescript-2.3.md)
* [TypeScript 2.2](breaking-changes/typescript-2.2.md)
* [TypeScript 2.1](breaking-changes/typescript-2.1.md)
* [TypeScript 2.0](breaking-changes/typescript-2.0.md)
* [TypeScript 1.8](breaking-changes/typescript-1.8.md)
* [TypeScript 1.7](breaking-changes/typescript-1.7.md)
* [TypeScript 1.6](breaking-changes/typescript-1.6.md)
* [TypeScript 1.5](breaking-changes/typescript-1.5.md)
* [TypeScript 1.4](breaking-changes/typescript-1.4.md)
* [JavaScript文件里的类型检查](zh/javascript/type-checking-javascript-files.md)
* [工程配置](zh/project-config/README.md)
* [tsconfig.json](zh/project-config/tsconfig.json.md)
* [工程引用](zh/project-config/project-references.md)
* [NPM包的类型](zh/project-config/typings-for-npm-packages.md)
* [编译选项](zh/project-config/compiler-options.md)
* [配置 Watch](zh/project-config/configuring-watch.md)
* [在MSBuild里使用编译选项](zh/project-config/compiler-options-in-msbuild.md)
* [与其它构建工具整合](zh/project-config/integrating-with-build-tools.md)
* [使用TypeScript的每日构建版本](zh/project-config/nightly-builds.md)
* [Wiki](zh/wiki/README.md)
* [TypeScript里的this](zh/wiki/this-in-typescript.md)
* [编码规范](zh/wiki/coding_guidelines.md)
* [常见编译错误](zh/wiki/common-errors.md)
* [支持TypeScript的编辑器](zh/wiki/typescript-editor-support.md)
* [结合ASP.NET v5使用TypeScript](zh/wiki/using-typescript-with-asp.net-5.md)
* [架构概述](zh/wiki/architectural-overview.md)
* [发展路线图](zh/wiki/roadmap.md)
* [新增功能](zh/release-notes/README.md)
* [TypeScript 4.1](zh/release-notes/typescript-4.1.md)
* [TypeScript 4.0](zh/release-notes/typescript-4.0.md)
* [TypeScript 3.9](zh/release-notes/typescript-3.9.md)
* [TypeScript 3.8](zh/release-notes/typescript-3.8.md)
* [TypeScript 3.7](zh/release-notes/typescript-3.7.md)
* [TypeScript 3.6](zh/release-notes/typescript-3.6.md)
* [TypeScript 3.5](zh/release-notes/typescript-3.5.md)
* [TypeScript 3.4](zh/release-notes/typescript-3.4.md)
* [TypeScript 3.3](zh/release-notes/typescript-3.3.md)
* [TypeScript 3.2](zh/release-notes/typescript-3.2.md)
* [TypeScript 3.1](zh/release-notes/typescript-3.1.md)
* [TypeScript 3.0](zh/release-notes/typescript-3.0.md)
* [TypeScript 2.9](zh/release-notes/typescript-2.9.md)
* [TypeScript 2.8](zh/release-notes/typescript-2.8.md)
* [TypeScript 2.7](zh/release-notes/typescript-2.7.md)
* [TypeScript 2.6](zh/release-notes/typescript-2.6.md)
* [TypeScript 2.5](zh/release-notes/typescript-2.5.md)
* [TypeScript 2.4](zh/release-notes/typescript-2.4.md)
* [TypeScript 2.3](zh/release-notes/typescript-2.3.md)
* [TypeScript 2.2](zh/release-notes/typescript-2.2.md)
* [TypeScript 2.1](zh/release-notes/typescript-2.1.md)
* [TypeScript 2.0](zh/release-notes/typescript-2.0.md)
* [TypeScript 1.8](zh/release-notes/typescript-1.8.md)
* [TypeScript 1.7](zh/release-notes/typescript-1.7.md)
* [TypeScript 1.6](zh/release-notes/typescript-1.6.md)
* [TypeScript 1.5](zh/release-notes/typescript-1.5.md)
* [TypeScript 1.4](zh/release-notes/typescript-1.4.md)
* [TypeScript 1.3](zh/release-notes/typescript-1.3.md)
* [TypeScript 1.1](zh/release-notes/typescript-1.1.md)
* [Breaking Changes](zh/breaking-changes/README.md)
* [TypeScript 3.6](zh/breaking-changes/typescript-3.6.md)
* [TypeScript 3.5](zh/breaking-changes/typescript-3.5.md)
* [TypeScript 3.4](zh/breaking-changes/typescript-3.4.md)
* [TypeScript 3.2](zh/breaking-changes/typescript-3.2.md)
* [TypeScript 3.1](zh/breaking-changes/typescript-3.1.md)
* [TypeScript 3.0](zh/breaking-changes/typescript-3.0.md)
* [TypeScript 2.9](zh/breaking-changes/typescript-2.9.md)
* [TypeScript 2.8](zh/breaking-changes/typescript-2.8.md)
* [TypeScript 2.7](zh/breaking-changes/typescript-2.7.md)
* [TypeScript 2.6](zh/breaking-changes/typescript-2.6.md)
* [TypeScript 2.4](zh/breaking-changes/typescript-2.4.md)
* [TypeScript 2.3](zh/breaking-changes/typescript-2.3.md)
* [TypeScript 2.2](zh/breaking-changes/typescript-2.2.md)
* [TypeScript 2.1](zh/breaking-changes/typescript-2.1.md)
* [TypeScript 2.0](zh/breaking-changes/typescript-2.0.md)
* [TypeScript 1.8](zh/breaking-changes/typescript-1.8.md)
* [TypeScript 1.7](zh/breaking-changes/typescript-1.7.md)
* [TypeScript 1.6](zh/breaking-changes/typescript-1.6.md)
* [TypeScript 1.5](zh/breaking-changes/typescript-1.5.md)
* [TypeScript 1.4](zh/breaking-changes/typescript-1.4.md)

**TypeScript手册官方英文版**

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0165a94

Please sign in to comment.