Skip to content

Commit

Permalink
Fixing building errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonzalo Gluzman committed Dec 15, 2020
1 parent 6465d8d commit 87c7b7e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
File renamed without changes.
7 changes: 6 additions & 1 deletion src/promise-settled-result.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
interface _PromiseFulfilledResult<T> {
status: "fulfilled";
value: T;
}

export interface _PromiseRejectedResult<E> {
status: "rejected";
reason: E;
}

export type _PromiseSettledResult<T, E> = PromiseFulfilledResult<T> | _PromiseRejectedResult<E>;
export type _PromiseSettledResult<T, E> = _PromiseFulfilledResult<T> | _PromiseRejectedResult<E>;
File renamed without changes.
File renamed without changes.

0 comments on commit 87c7b7e

Please sign in to comment.