0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-23 13:43:31 -05:00
denoland-deno/cli/js/web/promise.ts

10 lines
205 B
TypeScript
Raw Normal View History

2020-07-07 04:45:39 +03:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
2020-03-31 01:01:19 +02:00
export enum PromiseState {
2020-07-07 04:45:39 +03:00
Pending,
Fulfilled,
Rejected,
2020-03-31 01:01:19 +02:00
}
export type PromiseDetails<T> = [PromiseState, T | undefined];