# ReturnValueDescription interface · @imqueue/rpc

Source: https://imqueue.org/api/rpc/latest/rpc.returnvaluedescription/
Published: 2026-08-04
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/rpc 3.5.3 — generated reference, not hand-written

Description of an exposed method's return value, as parsed from its JSDoc.

**Signature:**

```typescript
export interface ReturnValueDescription 
```

## Remarks

Always present on a [MethodDescription](https://imqueue.org/api/rpc/latest/rpc.methoddescription/), even when the method has no `@returns` tag — in which case the type is `'any'`.

## Properties


| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [description](https://imqueue.org/api/rpc/latest/rpc.returnvaluedescription.description/) |  | string | Prose describing the return value, from the `@returns` JSDoc line. |
| [tsType](https://imqueue.org/api/rpc/latest/rpc.returnvaluedescription.tstype/) |  | string | The return type from the method's `@returns` JSDoc, defaulting to `'any'`. |
| [type](https://imqueue.org/api/rpc/latest/rpc.returnvaluedescription.type/) |  | string | Legacy duplicate of [ReturnValueDescription.tsType](https://imqueue.org/api/rpc/latest/rpc.returnvaluedescription.tstype/) — always the identical string. |

