Skip to content

Commit 72ccde9

Browse files
AsyncReturnType: Add support for PromiseLike (#1082)
1 parent 568604c commit 72ccde9

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

source/async-return-type.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type AsyncFunction = (...arguments_: any[]) => Promise<unknown>;
1+
type AsyncFunction = (...arguments_: any[]) => PromiseLike<unknown>;
22

33
/**
44
Unwrap the return type of a function that returns a `Promise`.

test-d/async-return-type.ts

+11
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,14 @@ asyncFunction().then(value => { // eslint-disable-line unicorn/prefer-top-level-
1111
expectType<Value>(value);
1212
expectNotAssignable<string>(value);
1313
});
14+
15+
function asyncPromiseLike(): PromiseLike<number> {
16+
return Promise.resolve(2);
17+
}
18+
19+
type ValuePromiseLike = AsyncReturnType<typeof asyncPromiseLike>;
20+
21+
asyncPromiseLike().then(value => { // eslint-disable-line unicorn/prefer-top-level-await, @typescript-eslint/no-floating-promises
22+
expectType<ValuePromiseLike>(value);
23+
expectNotAssignable<string>(value);
24+
});

0 commit comments

Comments
 (0)