File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## next version
4
+
5
+ * Added ` reflectStatus() ` function.
6
+
3
7
## 1.1.4
4
8
5
9
* Fixed typescript declarations.
Original file line number Diff line number Diff line change @@ -220,6 +220,10 @@ declare module "timeoutPrecise" {
220
220
export default timeoutPrecise ;
221
221
function timeoutPrecise < T > ( fct : ( ) => Promise < T > | T , amount : number ) : Promise < T > ;
222
222
}
223
+ declare module "reflectStatus" {
224
+ export default reflectStatus ;
225
+ function reflectStatus < T > ( fct : ( ) => Promise < T > | T ) : Promise < PromiseSettledResult < T > > ;
226
+ }
223
227
declare module "modern-async" {
224
228
export { default as asyncIterableWrap } from "asyncIterableWrap" ;
225
229
export { default as asyncRoot } from "asyncRoot" ;
@@ -265,4 +269,5 @@ declare module "modern-async" {
265
269
export { default as TimeoutError } from "TimeoutError" ;
266
270
export { default as timeoutPrecise } from "timeoutPrecise" ;
267
271
export { default as toArray } from "toArray" ;
272
+ export { default as reflectStatus } from "reflectStatus" ;
268
273
}
You can’t perform that action at this time.
0 commit comments