# z.Solidity.ArrayWithTuple

## Imports

```ts
import { z } from 'ox/zod'

z.Solidity.ArrayWithTuple
```

## Definition

```ts
export const ArrayWithTuple = z
  .string()
  .check(
    z.refine(
      (value): value is abitype.SolidityArrayWithTuple =>
        /^tuple(\[[0-9]{0,}\])+$/.test(value),
      'expected Solidity tuple array type',
    ),
  )
```

**Source:** [src/zod/Solidity.ts](https://github.com/wevm/ox/blob/main/src/zod/Solidity.ts)
