Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PromiseSettledResult

import type { PromiseSettledResult } from "https://raw.githubusercontent.com/worker-tools/extendable-promise/master/index.ts";
type PromiseSettledResult<T> = PromiseFulfilledResult<T> | PromiseRejectedResult;