├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README.md~ ├── assets └── images │ └── tutorials │ └── aspnet │ ├── new-asp-project-empty.png │ ├── new-asp-project-template.png │ ├── new-asp-project.png │ ├── new-folder.png │ ├── new-item.png │ ├── new-tsconfig.png │ ├── open-index.png │ ├── packageinstaller-angular2.png │ ├── packageinstaller-es6-shim.png │ ├── packageinstaller-systemjs.png │ ├── packageinstaller-typings.png │ ├── paused-demo.png │ ├── running-demo.png │ ├── scripts-folder.png │ ├── src-folder.png │ └── task-runner-explorer.png ├── lint.js ├── package.json ├── pages ├── .gitignore ├── Advanced Types.md ├── Basic Types.md ├── Classes.md ├── Compiler Options in MSBuild.md ├── Compiler Options.md ├── Declaration Merging.md ├── Decorators.md ├── Enums.md ├── Functions.md ├── Generics.md ├── Integrating with Build Tools.md ├── Interfaces.md ├── Iterators and Generators.md ├── JSX.md ├── Mixins.md ├── Module Resolution.md ├── Modules.md ├── Namespaces and Modules.md ├── Namespaces.md ├── Nightly Builds.md ├── Symbols.md ├── Triple-Slash Directives.md ├── Type Compatibility.md ├── Type Inference.md ├── Typings for NPM Packages.md ├── Variable Declarations.md ├── Writing Declaration Files.md ├── declaration files │ ├── By Example.md │ ├── Consumption.md │ ├── Deep Dive.md │ ├── Do's and Don'ts.md │ ├── Introduction.md │ ├── Library Structures.md │ ├── Publishing.md │ └── templates │ │ ├── global-modifying-module.d.ts │ │ ├── global-plugin.d.ts │ │ ├── global.d.ts │ │ ├── module-class.d.ts │ │ ├── module-function.d.ts │ │ ├── module-plugin.d.ts │ │ └── module.d.ts ├── tsconfig.json.md └── tutorials │ ├── ASP.NET 4.md │ ├── ASP.NET Core.md │ ├── Angular 2.md │ ├── Gulp.md │ ├── Knockout.md │ └── React & Webpack.md └── pull_request_template.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/README.md -------------------------------------------------------------------------------- /README.md~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/README.md~ -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/new-asp-project-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/new-asp-project-empty.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/new-asp-project-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/new-asp-project-template.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/new-asp-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/new-asp-project.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/new-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/new-folder.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/new-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/new-item.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/new-tsconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/new-tsconfig.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/open-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/open-index.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/packageinstaller-angular2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/packageinstaller-angular2.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/packageinstaller-es6-shim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/packageinstaller-es6-shim.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/packageinstaller-systemjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/packageinstaller-systemjs.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/packageinstaller-typings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/packageinstaller-typings.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/paused-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/paused-demo.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/running-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/running-demo.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/scripts-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/scripts-folder.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/src-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/src-folder.png -------------------------------------------------------------------------------- /assets/images/tutorials/aspnet/task-runner-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/assets/images/tutorials/aspnet/task-runner-explorer.png -------------------------------------------------------------------------------- /lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/lint.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/package.json -------------------------------------------------------------------------------- /pages/.gitignore: -------------------------------------------------------------------------------- 1 | *.md~ 2 | -------------------------------------------------------------------------------- /pages/Advanced Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Advanced Types.md -------------------------------------------------------------------------------- /pages/Basic Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Basic Types.md -------------------------------------------------------------------------------- /pages/Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Classes.md -------------------------------------------------------------------------------- /pages/Compiler Options in MSBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Compiler Options in MSBuild.md -------------------------------------------------------------------------------- /pages/Compiler Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Compiler Options.md -------------------------------------------------------------------------------- /pages/Declaration Merging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Declaration Merging.md -------------------------------------------------------------------------------- /pages/Decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Decorators.md -------------------------------------------------------------------------------- /pages/Enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Enums.md -------------------------------------------------------------------------------- /pages/Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Functions.md -------------------------------------------------------------------------------- /pages/Generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Generics.md -------------------------------------------------------------------------------- /pages/Integrating with Build Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Integrating with Build Tools.md -------------------------------------------------------------------------------- /pages/Interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Interfaces.md -------------------------------------------------------------------------------- /pages/Iterators and Generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Iterators and Generators.md -------------------------------------------------------------------------------- /pages/JSX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/JSX.md -------------------------------------------------------------------------------- /pages/Mixins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Mixins.md -------------------------------------------------------------------------------- /pages/Module Resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Module Resolution.md -------------------------------------------------------------------------------- /pages/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Modules.md -------------------------------------------------------------------------------- /pages/Namespaces and Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Namespaces and Modules.md -------------------------------------------------------------------------------- /pages/Namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Namespaces.md -------------------------------------------------------------------------------- /pages/Nightly Builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Nightly Builds.md -------------------------------------------------------------------------------- /pages/Symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Symbols.md -------------------------------------------------------------------------------- /pages/Triple-Slash Directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Triple-Slash Directives.md -------------------------------------------------------------------------------- /pages/Type Compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Type Compatibility.md -------------------------------------------------------------------------------- /pages/Type Inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Type Inference.md -------------------------------------------------------------------------------- /pages/Typings for NPM Packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Typings for NPM Packages.md -------------------------------------------------------------------------------- /pages/Variable Declarations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/Variable Declarations.md -------------------------------------------------------------------------------- /pages/Writing Declaration Files.md: -------------------------------------------------------------------------------- 1 | > ## This page has been moved to [Publishing](./declaration files/Introduction.md) 2 | -------------------------------------------------------------------------------- /pages/declaration files/By Example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/By Example.md -------------------------------------------------------------------------------- /pages/declaration files/Consumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/Consumption.md -------------------------------------------------------------------------------- /pages/declaration files/Deep Dive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/Deep Dive.md -------------------------------------------------------------------------------- /pages/declaration files/Do's and Don'ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/Do's and Don'ts.md -------------------------------------------------------------------------------- /pages/declaration files/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/Introduction.md -------------------------------------------------------------------------------- /pages/declaration files/Library Structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/Library Structures.md -------------------------------------------------------------------------------- /pages/declaration files/Publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/Publishing.md -------------------------------------------------------------------------------- /pages/declaration files/templates/global-modifying-module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/templates/global-modifying-module.d.ts -------------------------------------------------------------------------------- /pages/declaration files/templates/global-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/templates/global-plugin.d.ts -------------------------------------------------------------------------------- /pages/declaration files/templates/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/templates/global.d.ts -------------------------------------------------------------------------------- /pages/declaration files/templates/module-class.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/templates/module-class.d.ts -------------------------------------------------------------------------------- /pages/declaration files/templates/module-function.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/templates/module-function.d.ts -------------------------------------------------------------------------------- /pages/declaration files/templates/module-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/templates/module-plugin.d.ts -------------------------------------------------------------------------------- /pages/declaration files/templates/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/declaration files/templates/module.d.ts -------------------------------------------------------------------------------- /pages/tsconfig.json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/tsconfig.json.md -------------------------------------------------------------------------------- /pages/tutorials/ASP.NET 4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/tutorials/ASP.NET 4.md -------------------------------------------------------------------------------- /pages/tutorials/ASP.NET Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/tutorials/ASP.NET Core.md -------------------------------------------------------------------------------- /pages/tutorials/Angular 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/tutorials/Angular 2.md -------------------------------------------------------------------------------- /pages/tutorials/Gulp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/tutorials/Gulp.md -------------------------------------------------------------------------------- /pages/tutorials/Knockout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/tutorials/Knockout.md -------------------------------------------------------------------------------- /pages/tutorials/React & Webpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pages/tutorials/React & Webpack.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddaytoday/TypeScript-Handbook-RU/HEAD/pull_request_template.md --------------------------------------------------------------------------------