Skip to content

Commit

Permalink
Merge pull request #916 from yytypescript/feature/915
Browse files Browse the repository at this point in the history
docs: ✏️ TがPromise<T>である場合というわかりにくい文章の修正
  • Loading branch information
jamashita authored Oct 18, 2024
2 parents 6002a84 + 1b95476 commit fbf1c95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/reference/type-reuse/utility-types/awaited.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ title: "Awaited<T>"

### T

型引数`T`には、任意の型を渡します。それが`Promise<T>`である場合は解決された型である`T`を返します。これは`Promise`が何重にネストしていても、最終的な解決値の型を取得できます。
型引数`T`には、任意の型を渡します。それが`Promise<V>`である場合は解決された型である`V`を返します。これは`Promise`が何重にネストしていても、最終的な解決値の型を取得できます。

## Awaitedの使用例

Expand Down

0 comments on commit fbf1c95

Please sign in to comment.