|
2 | 2 |
|
3 | 3 | * [はじめに](README.md)
|
4 | 4 | * [TypeScript入門](getting-started/README.md)
|
5 |
| - * [なぜ TypeScript を使うのか?](getting-started/why-typescript.md) |
| 5 | + * [なぜTypeScriptを使うのか?](getting-started/why-typescript.md) |
6 | 6 | * [JavaScript](recap/README.md)
|
7 | 7 | * [等価演算子の同一性](recap/equality.md)
|
8 |
| - * [参照(リファレンス)](recap/references.md) |
9 |
| - * [null と undefined](recap/null-undefined.md) |
10 |
| - * [this キーワード](recap/this.md) |
| 8 | + * [リファレンス](recap/references.md) |
| 9 | + * [nullとundefined](recap/null-undefined.md) |
| 10 | + * [this](recap/this.md) |
11 | 11 | * [クロージャ](recap/closure.md)
|
12 |
| - * [Number 型](recap/number.md) |
13 |
| - * [Truthy な値(Trueに変換される値)](recap/truthy.md) |
14 |
| -* [次世代の JavaScript 機能](future-javascript/README.md) |
| 12 | + * [Number型](recap/number.md) |
| 13 | + * [Truthy](recap/truthy.md) |
| 14 | +* [次世代のJavaScript機能](future-javascript/README.md) |
15 | 15 | * [クラス](future-javascript/classes/README.md)
|
16 | 16 | * [Classes Emit](future-javascript/classes/classes-emit.md)
|
17 | 17 | * [アロー関数](future-javascript/arrow-functions.md)
|
18 | 18 | * [残余引数](future-javascript/rest-parameters.md)
|
19 |
| - * [let (変数)](future-javascript/let.md) |
20 |
| - * [const(定数)](future-javascript/const.md) |
| 19 | + * [let](future-javascript/let.md) |
| 20 | + * [const](future-javascript/const.md) |
21 | 21 | * [分割代入](future-javascript/destructuring.md)
|
22 | 22 | * [スプレッド演算子](future-javascript/spread-operator.md)
|
23 |
| - * [for...of ループ](future-javascript/for...of.md) |
24 |
| - * [イテレータ](future-javascript/iterators.md) |
| 23 | + * [for...of](future-javascript/for...of.md) |
| 24 | + * [Iterator](future-javascript/iterators.md) |
25 | 25 | * [テンプレートリテラル](future-javascript/template-strings.md)
|
26 |
| - * [Promise(プロミス)](future-javascript/promise.md) |
| 26 | + * [Promise](future-javascript/promise.md) |
27 | 27 | * [ジェネレータ](future-javascript/generators.md)
|
28 |
| - * [async await キーワード](future-javascript/async-await.md) |
| 28 | + * [async await](future-javascript/async-await.md) |
29 | 29 | * [プロジェクトのセットアップ](project/README.md)
|
30 | 30 | * [コンパイルコンテキスト](project/compilation-context/README.md)
|
31 | 31 | * [tsconfig.json](project/compilation-context/tsconfig.md)
|
|
34 | 34 | * [モジュール](project/modules/README.md)
|
35 | 35 | * [モジュールの詳細](project/modules/external-modules.md)
|
36 | 36 | * [globals.d.ts](project/modules/globals.md)
|
37 |
| - * [namespace(名前空間)](project/namespaces.md) |
| 37 | + * [namespace](project/namespaces.md) |
38 | 38 | * [動的インポート](project/dynamic-import-expressions.md)
|
39 |
| -* [Node.js クイックスタート](nodejs.md) |
40 |
| -* [React クイックスタート](browser.md) |
41 |
| -* [TypeScript の型システム](type-system/README.md) |
42 |
| - * [JavaScript からの移行ガイド](type-system/migrating.md) |
| 39 | +* [Node.js & TypeScriptクイックスタート](nodejs.md) |
| 40 | +* [React & TypeScriptクイックスタート](browser.md) |
| 41 | +* [TypeScriptの型システム](type-system/README.md) |
| 42 | + * [JavaScriptからの移行ガイド](type-system/migrating.md) |
43 | 43 | * [@types パッケージ \(DefinitelyTyped\)](type-system/types.md)
|
44 | 44 | * [アンビエント宣言\(declare\)](type-system/intro/README.md)
|
45 | 45 | * [型定義ファイル](type-system/intro/d.ts.md)
|
|
49 | 49 | * [lib.d.ts](type-system/lib.d.ts.md)
|
50 | 50 | * [関数の型](type-system/functions.md)
|
51 | 51 | * [呼び出し可能オブジェクト](type-system/callable.md)
|
52 |
| - * [型アサーション(キャスト)](type-system/type-assertion.md) |
53 |
| - * [厳密なオブジェクト型のチェック](type-system/freshness.md) |
| 52 | + * [Type Assertion(型アサーション)](type-system/type-assertion.md) |
| 53 | + * [Freshness](type-system/freshness.md) |
54 | 54 | * [型ガード](type-system/typeguard.md)
|
55 | 55 | * [リテラル型](type-system/literal-types.md)
|
56 |
| - * [Readonly 型](type-system/readonly.md) |
| 56 | + * [Readonly](type-system/readonly.md) |
57 | 57 | * [ジェネリック型](type-system/generics.md)
|
58 | 58 | * [型推論](type-system/type-inference.md)
|
59 | 59 | * [型の互換性](type-system/type-compatibility.md)
|
60 |
| - * [never 型](type-system/never.md) |
61 |
| - * [Union 型の判別](type-system/discriminated-unions.md) |
62 |
| - * [インデックス型(インデックスシグネチャ)](type-system/index-signatures.md) |
| 60 | + * [never](type-system/never.md) |
| 61 | + * [判別可能なUnion型](type-system/discriminated-unions.md) |
| 62 | + * [Index signature(インデックス型)](type-system/index-signatures.md) |
63 | 63 | * [型の移動](type-system/moving-types.md)
|
64 | 64 | * [例外のハンドリング](type-system/exceptions.md)
|
65 | 65 | * [ミックスイン](type-system/mixins.md)
|
66 | 66 | * [JSX](tsx/README.md)
|
67 | 67 | * [React](tsx/react.md)
|
68 |
| - * [React 以外の JSX](tsx/others.md) |
| 68 | + * [React以外のJSX](tsx/others.md) |
69 | 69 | * [オプション](intro/README.md)
|
70 | 70 | * [noImplicitAny](intro/noimplicitany.md)
|
71 | 71 | * [strictNullChecks](intro/strictnullchecks.md)
|
|
101 | 101 | * [Create Arrays](main-1/create-arrays.md)
|
102 | 102 | * [Typesafe Event Emitter](main-1/typed-event.md)
|
103 | 103 | * [コーディング規約](styleguide.md)
|
104 |
| -* [TypeScript コンパイラの内側](overview/README.md) |
| 104 | +* [TypeScriptコンパイラの内側](overview/README.md) |
105 | 105 | * [Program](overview/program.md)
|
106 | 106 | * [AST](overview/ast/README.md)
|
107 | 107 | * [TIP: Visit Children](overview/ast/ast-tip-children.md)
|
|
0 commit comments