Type helper that unwraps Promise types to their resolved value type.
The type to unwrap
type A = ResultOnce<Promise<number>>; // Promise<number>type B = ResultOnce<string>; // string Copy
type A = ResultOnce<Promise<number>>; // Promise<number>type B = ResultOnce<string>; // string
Type helper that unwraps Promise types to their resolved value type.