TypeScript-Handbook
TypeScript-Handbook copied to clipboard
Deprecated, please use the TypeScript-Website repo instead
...the headers are no longer links. Since each page can be huge, it would be much easier if each header is a link so we can point user to the...
Minor typos in: Functions.md Triple-Slash Directives.md see: PR #919
There is 0 mention of references in the tsconfig.json section: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html I know that there is this other https://www.typescriptlang.org/docs/handbook/project-references.html specifically detailing project references, but it would be nice to have...
This is really basic, but it actually tripped me up for a bit. TypeScript allows you to declare the structure of an object type without declaring an interface, as in...
It would be better to show the following solution in https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Mixins.md. https://github.com/Microsoft/TypeScript/issues/2919#issuecomment-173384825
Hello, thanks for this fabulous handbook. I see this repo states that the license is MIT. The handbook content from gittobook [here](https://gittobook.org/books/97/TypeScript-Handbook), however, states "Creative Commons Non-Commercial Share Alike 3.0"....
The following [code](https://github.com/Microsoft/TypeScript-Handbook/commit/bd80ff4883ee7bf105f686856fbc89e2488ec918#diff-19c4cf88ab6db6b46bc3fc267878c3c4R946) is shown as an example of types that are immediately resolved: ``` declare function f(x: T): T extends true ? string : number; // Type is 'string...
I noticed [Configuring Watch](http://www.typescriptlang.org/docs/handbook/configuring-watch.html) isn't linked as one of the pages in the "Project Configuration" section. Is this intentional?
In the handbook section on [Array Destructuring](http://www.typescriptlang.org/docs/handbook/variable-declarations.html) the type is incorrect for the function parameter. `input` is defined this way: ``` typescript let input = [1, 2]; ``` Therefore this...