File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ interface PromiseConstructor {
7
7
/**
8
8
* Creates a new Promise.
9
9
* @param executor A callback used to initialize the promise. This callback is passed two arguments:
10
- * a resolve callback used resolve the promise with a value or the result of another promise,
10
+ * a resolve callback used to resolve the promise with a value or the result of another promise,
11
11
* and a reject callback used to reject the promise with a provided reason or error.
12
12
*/
13
13
new < T > ( executor : ( resolve : ( value ?: T | PromiseLike < T > ) => void , reject : ( reason ?: any ) => void ) => void ) : Promise < T > ;
@@ -193,4 +193,4 @@ interface PromiseConstructor {
193
193
resolve ( ) : Promise < void > ;
194
194
}
195
195
196
- declare var Promise : PromiseConstructor ;
196
+ declare var Promise : PromiseConstructor ;
You can’t perform that action at this time.
0 commit comments