# SignPreparedCallsResult

> Overview of SignPreparedCallsResult

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
type SignPreparedCallsResult =
  | {
      data: Signed<
        Extract<
          PrepareCallsResult,
          {
            type: "array";
          }
        >["data"][number]
      >[];
      type: "array";
    }
  | Signed<
      Extract<
        PrepareCallsResult,
        {
          type: "user-operation-v060";
        }
      >
    >
  | Signed<
      Extract<
        PrepareCallsResult,
        {
          type: "user-operation-v070";
        }
      >
    >
  | Signed<
      Extract<
        PrepareCallsResult,
        {
          type: "authorization";
        }
      >
    >;
```

Defined in: [packages/wallet-apis/src/actions/signPreparedCalls.ts:22](https://github.com/alchemyplatform/aa-sdk/blob/v5.x.x/packages/wallet-apis/src/actions/signPreparedCalls.ts#L22)