# MultisigPluginActions

> Overview of MultisigPluginActions

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

```ts
type MultisigPluginActions<TAccount> = MultisigPluginActions_<
  TAccount,
  MultisigUserOperationContext
> &
  object &
  IsUndefined<TAccount> extends false
  ? object
  : object;
```

Defined in: [account-kit/smart-contracts/src/msca/plugins/multisig/extension.ts:26](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/smart-contracts/src/msca/plugins/multisig/extension.ts#L26)

## Type Declaration

<table>
  <thead>
    <tr>
      <th align="left">Name</th>
      <th align="left">Type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `getThreshold()`
      </td>

      <td>
        (`params`) => `Promise`\<`bigint`>
      </td>
    </tr>

    <tr>
      <td>
        `isOwnerOf()`
      </td>

      <td>
        (`params`) => `Promise`\<`boolean`>
      </td>
    </tr>

    <tr>
      <td>
        `proposeUserOperation()`
      </td>

      <td>
        (`params`) => `Promise`\<[`ProposeUserOperationResult`](ProposeUserOperationResult)\<`TAccount`, `GetEntryPointFromAccount`\<`TAccount`>>>
      </td>
    </tr>

    <tr>
      <td>
        `readOwners()`
      </td>

      <td>
        (`params`) => `Promise`\<`ReadonlyArray`\<[`Address`](https://abitype.dev)>>
      </td>
    </tr>

    <tr>
      <td>
        `signMultisigUserOperation()`
      </td>

      <td>
        (`params`) => `Promise`\<[`SignMultisigUserOperationResult`](SignMultisigUserOperationResult)>
      </td>
    </tr>

  </tbody>
</table>

## Type Parameters

<table>
  <thead>
    <tr>
      <th align="left">Type Parameter</th>
      <th align="left">Default type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `TAccount` *extends* `SmartContractAccount` | `undefined`
      </td>

      <td>
        `SmartContractAccount` | `undefined`
      </td>
    </tr>

  </tbody>
</table>