Condividi tramite


AbortablePromiseBuilder type

Rappresenta una funzione che restituisce una promessa che può essere interrotta.

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