0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【TypeScript】Awaited<T>の自作(type-challenges 初級編 189・Awaited)

Last updated at Posted at 2024-12-06

お題

Promiseの解決値の型Tを取得するユーティリティ型、Awaitedを自作する。

やりたいこと

type ExampleType1 = Promise<string>;
type ExampleType2 = Promise<Promise<string | boolean>>;
type ExampleType3 = { then: (onfulfilled: (arg: number) => any) => any };

type Result1 = MyAwaited<ExampleType1>; // => string
type Result2 = MyAwaited<ExampleType2>; // => string | boolean
type Result3 = MyAwaited<ExampleType3>; // => number

解答

type MyAwaited<T extends PromiseLike<any>> = T extends PromiseLike<infer U>
  ? U extends PromiseLike<any>
    ? MyAwaited<U>
    : U
  : never;

解説

処理の流れ

  • T extends PromiseLike<any>
    TPromiseLikeな型に制約する。
  • T extends PromiseLike<infer U> ...
    infer UPromise or PromiseLikeの中の型を抽出する。
  • U extends PromiseLike<any> ? MyAwaited<U> : U
    抽出された型UがPromiseLikeかどうかで条件分岐
    = 入れ子になっているかどうかの確認。
    • 入れ子になっている場合
      MyAwaited<U>で再帰的に処理。
    • 入れ子ではない場合
      そのまま抽出されたUを返す。
  • ... : never
    それ以外の場合にneverを返す。

PrmosieLikeな型とは...

  • thenメソッドを持つオブジェクトのことで、完全なPromiseである必要はない。
type ExampleType3 = { then: (onfulfilled: (arg: number) => any) => any };
  • thenableオブジェクトとも呼ばれる。

inferとは...

参考記事

Promise<T>

Awaited<T>

今回の問題

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?