1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-17 19:34:02 -05:00
denoland-deno/cli/js/web/promise.ts

8 lines
141 B
TypeScript
Raw Normal View History

2020-03-31 01:01:19 +02:00
export enum PromiseState {
Pending = 0,
Fulfilled = 1,
Rejected = 2,
}
export type PromiseDetails<T> = [PromiseState, T | undefined];