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

PromiseFulfilledResult

import type { PromiseFulfilledResult } from "https://raw.githubusercontent.com/worker-tools/extendable-promise/master/index.ts";
interface PromiseFulfilledResult <T> {
status: "fulfilled";
value: T;
}

§Type Parameters

§Properties

§
status: "fulfilled"
[src]
§
value: T
[src]