(u: unknown)
| 60 | * @since 4.0.0 |
| 61 | */ |
| 62 | export const isAsyncResult = (u: unknown): u is AsyncResult<unknown, unknown> => hasProperty(u, TypeId) |
| 63 | |
| 64 | /** |
| 65 | * Namespace containing type-level helpers and the shared prototype shape for `AsyncResult` values. |