We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/* _____________ 你的代码 _____________ */ type MyAwaited<T> = T extends Promise<infer U> ? MyAwaited<U> : T extends { then: (p: (arg: infer K) => any) => any } ? K : T; /* _____________ 测试用例 _____________ */ import type { Equal, Expect } from '@type-challenges/utils'; type X = Promise<string>; type Y = Promise<{ field: number }>; type Z = Promise<Promise<string | number>>; type Z1 = Promise<Promise<Promise<string | boolean>>>; type T = { then: (onfulfilled: (arg: number) => any) => any }; type cases = [ Expect<Equal<MyAwaited<X>, string>>, Expect<Equal<MyAwaited<Y>, { field: number }>>, Expect<Equal<MyAwaited<Z>, string | number>>, Expect<Equal<MyAwaited<Z1>, string | boolean>>, Expect<Equal<MyAwaited<T>, number>> ]; // @ts-expect-error type error = MyAwaited<number>;
The text was updated successfully, but these errors were encountered:
nice work!
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: