TypeScript-Handbook icon indicating copy to clipboard operation
TypeScript-Handbook copied to clipboard

Deprecated, please use the TypeScript-Website repo instead

Results 100 TypeScript-Handbook issues
Sort by recently updated
recently updated
newest added

There are a couple of grammatical errors, typos and spacing issues are found in basic-types.md. > PR for this issue focus only for **basic-types.md**

I personally feel that advanced types page is getting a little long and difficult to maintain or read through. I have more than a few parts I'd like to add...

Is this the repository that is directly built to the typescript website? There is a broken link that I would like to fix but link works within this repo. Like...

Go to https://www.typescriptlang.org/docs/handbook/classes.html#parameter-properties for example. It scrolls to the correct paragraph, but the actual headline having the anchor is invisible because it is hidden behind the fixed page header. I...

TypeScript 3.0 made setting default props much simpler in React. The release notes for 3.0 show an example. What isn't clear is how to set these default props as optional....

### Challenge Both myself and my team have experienced some confusion around choosing between named exports and default exports. ### On the one hand, official documentation suggests favoring export default....

TypeScript has inbuilt types / classes for all HTML elements (e.g. HTMLFormElement ) and WebAPI objects (e.g. XMLHttpRequest ), which is cool. But, there's no mention of this in the...

The page on consuming types packages (https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html) tells people to run `npm install --save @types/lodash`. This looks like a normal npm package install, and normal npm packages follow semver, so...

I cannot figure out how to write types for a common pattern I use. I have an async function, that optionally takes a callback, and: - calls the callback if...