summaryrefslogtreecommitdiff
path: root/cli/js/web/promise.ts
blob: a24e8ed51d8b9cf249ff4147d4a7e69be1f49d04 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.

export enum PromiseState {
  Pending,
  Fulfilled,
  Rejected,
}

export type PromiseDetails<T> = [PromiseState, T | undefined];