fix(core): update

This commit is contained in:
Philipp Kunz 2019-09-11 15:38:37 +02:00
parent 3340f1a895
commit baf956d0ed

View File

@ -1,5 +1,5 @@
export interface IResolve<T> {
(value?: T | Promise<T>): void;
(value?: T | PromiseLike<T>): void;
}
export interface IReject {