## PromiseProxy · interface

When `proxy` is called with a Promise, the returned object has this shape.

**Type Parameters:**

- `T`

### promiseProxy.busy · member

True if the promise is still pending, false if it has resolved or rejected.

**Type:** `boolean`

### promiseProxy.value · member

If the promise has resolved, this contains the resolved value.

**Type:** `T`

### promiseProxy.error · member

If the promise has rejected, this contains the rejection error.

**Type:** `any`
