次の方法で共有


AbortablePromiseBuilder type

中止できる Promise を返す関数を表します。

type AbortablePromiseBuilder<T> = (abortOptions: {
  abortSignal?: AbortSignalLike
}) => Promise<T>